Skip to content

Commit

Permalink
fix: remove deprecated settings in vscode settings.json
Browse files Browse the repository at this point in the history
  • Loading branch information
piscis committed Jun 1, 2024
1 parent b42a65d commit a88d10c
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"prettier.enable": false,
"eslint.packageManager": "pnpm",
"eslint.trace.server": "off",

// Visuals
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Monokai Vibrant",
"workbench.editor.tabCloseButton": "left",
"workbench.fontAliasing": "antialiased",
Expand Down Expand Up @@ -46,9 +43,9 @@
// "eslint.codeActionsOnSave.mode": "problems",
"typescript.tsserver.trace": "verbose",
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll.eslint": true, // this allows ESLint to auto fix on saved
"source.organizeImports": false
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
Expand Down Expand Up @@ -143,6 +140,7 @@
"volar.autoCompleteRefs": false,
"volar.codeLens.pugTools": false,
"volar.completion.preferredTagNameCase": "pascal",
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"workbench.editor.tabActionLocation": "left"

}

0 comments on commit a88d10c

Please sign in to comment.