Evo.Auth/.vscode/settings.json

34 lines
775 B
JSON

{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true
},
"explorerExclude.backup": null,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
"workbench.editor.labelFormat": "short",
"eslint.workingDirectories": [
{ "directory": "apps/web", "changeProcessCWD": true }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"json",
"typescript",
"typescriptreact",
"yaml"
],
"eslint.lintTask.enable": true,
"editor.inlineSuggest.showToolbar": "always"
}