File tree Expand file tree Collapse file tree 6 files changed +32
-69
lines changed
Expand file tree Collapse file tree 6 files changed +32
-69
lines changed Original file line number Diff line number Diff line change 99commitlint
1010commitlintrc
1111composables
12+ davidanson
1213degit
1314deps
1415destructurable
@@ -21,6 +22,7 @@ pausable
2122Postcardware
2223prefetch
2324preinstall
25+ quickfix
2426socio
2527Solana
2628Spatie
Original file line number Diff line number Diff line change 11{
2- // See https://go.microsoft.com/fwlink/?LinkId=827846
3- // for the documentation about the extensions.json format
42 "recommendations" : [
5- " dbaeumer.vscode-eslint " ,
6- " streetsidesoftware.code-spell-checker " ,
7- " davidanson.vscode-markdownlint "
3+ " biomejs.biome " ,
4+ " davidanson.vscode-markdownlint " ,
5+ " streetsidesoftware.code-spell-checker "
86 ]
97}
Original file line number Diff line number Diff line change 11{
22 "typescript.tsdk" : " node_modules/typescript/lib" ,
3- // Enable the ESlint flat config support
4- "eslint.experimental.useFlatConfig" : true ,
53 // Disable the default formatter, use eslint instead
64 "prettier.enable" : false ,
7- "editor.formatOnSave " : false ,
8- // Auto fix
5+ "editor.defaultFormatter " : " biomejs.biome " ,
6+ "editor.formatOnSave" : true ,
97 "editor.codeActionsOnSave" : {
10- "source.fixAll.eslint " : " explicit" ,
11- "source.organizeImports" : " never "
8+ "quickfix.biome " : " explicit" ,
9+ "source.organizeImports.biome " : " explicit "
1210 },
13- // Silent the stylistic rules in you IDE, but still auto fix them
14- "eslint.rules.customizations" : [
15- {
16- "rule" : " style/*" ,
17- "severity" : " off"
18- },
19- {
20- "rule" : " format/*" ,
21- "severity" : " off"
22- },
23- {
24- "rule" : " *-indent" ,
25- "severity" : " off"
26- },
27- {
28- "rule" : " *-spacing" ,
29- "severity" : " off"
30- },
31- {
32- "rule" : " *-spaces" ,
33- "severity" : " off"
34- },
35- {
36- "rule" : " *-order" ,
37- "severity" : " off"
38- },
39- {
40- "rule" : " *-dangle" ,
41- "severity" : " off"
42- },
43- {
44- "rule" : " *-newline" ,
45- "severity" : " off"
46- },
47- {
48- "rule" : " *quotes" ,
49- "severity" : " off"
50- },
51- {
52- "rule" : " *semi" ,
53- "severity" : " off"
54- }
55- ],
56- // Enable eslint for all supported languages
57- "eslint.validate" : [
58- " javascript" ,
59- " javascriptreact" ,
60- " typescript" ,
61- " typescriptreact" ,
62- " vue" ,
63- " stx" ,
64- " html" ,
65- " markdown" ,
66- " json" ,
67- " jsonc" ,
68- " yaml" ,
69- " toml"
70- ],
11+ // JSON
12+ "[jsonc]" : {
13+ "editor.defaultFormatter" : " biomejs.biome"
14+ },
15+
16+ // Markdown
17+ "[markdown]" : {
18+ "editor.defaultFormatter" : " DavidAnson.vscode-markdownlint" ,
19+ "editor.formatOnSave" : true
20+ },
21+
22+ "search.exclude" : {
23+ "**/node_modules" : true ,
24+ "**/cdk.out" : true ,
25+ "**/dist" : true ,
26+ "CHANGELOG.md" : true
27+ },
28+
7129 "cSpell.ignorePaths" : [
7230 " node_modules"
7331 ],
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " ./node_modules/@biomejs/biome/configuration_schema.json" ,
3+ "extends" : [" ./node_modules/@stacksjs/biome-config/config.json" ]
4+ }
Original file line number Diff line number Diff line change 5252 "devDependencies" : {
5353 "@biomejs/biome" : " ^1.9.0" ,
5454 "@commitlint/cli" : " ^19.5.0" ,
55+ "@stacksjs/biome-config" : " ^0.1.0" ,
5556 "@types/bun" : " ^1.1.9" ,
5657 "bumpp" : " ^9.5.2" ,
5758 "changelogen" : " ^0.5.5" ,
You can’t perform that action at this time.
0 commit comments