Skip to content

Commit

Permalink
chore: sort vscode settings properties
Browse files Browse the repository at this point in the history
  • Loading branch information
cahnory committed Nov 30, 2023
1 parent 9adc173 commit 27d91e0
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,8 @@
"source.fixAll": true
},
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.codeActionsOnSave.rules": null,
// Instructs ESLint to infer a working directory based on the location of
// package.json, .eslintignore and .eslintrc* files
"eslint.workingDirectories": [{ "mode": "auto" }],
"eslint.format.enable": true,
// Makes ESLint fix sources while prettier is set as the default formatter
"eslint.probe": [
"javascript",
Expand All @@ -46,27 +43,27 @@
"vue",
"markdown"
],
"prettier.enable": true,
// Temporary fix for prettier-vscode issue #3040
// see: https://github.com/prettier/prettier-vscode/issues/3040#issuecomment-1793748475
"prettier.prettierPath": "./node_modules/prettier/index.cjs",

// Instructs ESLint to infer a working directory based on the location of
// package.json, .eslintignore and .eslintrc* files
"eslint.workingDirectories": [{ "mode": "auto" }],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.turbo": true
},

"material-icon-theme.folders.associations": {
"components/primitives": "Delta",
".turbo": "Archive"
},
"material-icon-theme.files.associations": {
"*.css.ts": "Css",
"tsconfig.react.json": "Tsconfig"
},

"material-icon-theme.folders.associations": {
"components/primitives": "Delta",
".turbo": "Archive"
},
"prettier.enable": true,
// Temporary fix for prettier-vscode issue #3040
// see: https://github.com/prettier/prettier-vscode/issues/3040#issuecomment-1793748475
"prettier.prettierPath": "./node_modules/prettier/index.cjs",
"reader-mode.auto.glob": [
"**/node_modules/**",
"**/apps/*/build/**",
Expand Down

0 comments on commit 27d91e0

Please sign in to comment.