|
5 | 5 | "package-lock.json": true |
6 | 6 | }, |
7 | 7 | "editor.formatOnSave": false, |
8 | | - "editor.defaultFormatter": "esbenp.prettier-vscode", |
9 | | - "eslint.format.enable": true, |
| 8 | + "editor.defaultFormatter": "biomejs.biome", |
| 9 | + // Force .css files to be recognized as CSS (not PostCSS) so Biome formatter works correctly |
| 10 | + "files.associations": { |
| 11 | + "*.css": "css" |
| 12 | + }, |
10 | 13 | "editor.codeActionsOnSave": { |
11 | | - "source.addMissingImports": "explicit", |
12 | | - "source.fixAll": "explicit" |
| 14 | + "source.fixAll.biome": "explicit", |
| 15 | + "source.organizeImports.biome": "explicit" |
13 | 16 | }, |
14 | 17 | "[javascript][javascriptreact][typescript][typescriptreact]": { |
15 | | - "editor.defaultFormatter": "dbaeumer.vscode-eslint" |
| 18 | + "editor.formatOnSave": true, |
| 19 | + "editor.defaultFormatter": "biomejs.biome" |
16 | 20 | }, |
17 | 21 | "[json][jsonc]": { |
18 | 22 | "editor.formatOnSave": true, |
19 | | - "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 23 | + "editor.defaultFormatter": "biomejs.biome" |
| 24 | + }, |
| 25 | + "[css][scss][postcss]": { |
| 26 | + "editor.formatOnSave": true, |
| 27 | + "editor.defaultFormatter": "biomejs.biome" |
20 | 28 | }, |
21 | | - // "[css][scss]": { |
22 | | - // "editor.formatOnSave": false, |
23 | | - // "editor.defaultFormatter": "esbenp.prettier-vscode" |
24 | | - // }, |
25 | 29 | "css.validate": false, |
26 | 30 | "scss.validate": false, |
27 | | - "vitest.enable": true, |
28 | | - // "phpsab.executablePathCS": "./vendor/squizlabs/php_codesniffer/bin/phpcs", |
29 | | - // "phpsab.executablePathCBF": "./vendor/squizlabs/php_codesniffer/bin/phpcbf", |
30 | | - // "phpsab.autoRulesetSearch": true, |
31 | | - // // "phpsab.standard": "WordPress-Core", |
32 | | - // "phpsab.standard": "./phpcs.xml", |
33 | | - // "phpsab.snifferArguments": [ |
34 | | - // "--ignore=*/wp-admin/*,*/wp-includes/*,,*/composer/*" |
35 | | - // ], |
36 | 31 | "workbench.editor.customLabels.patterns": { |
37 | 32 | "**/app/**/page.tsx": "${dirname} - Page", |
38 | 33 | "**/app/**/layout.tsx": "${dirname} - Layout", |
|
0 commit comments