mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
29 lines
733 B
JSON
29 lines
733 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"files.exclude": {
|
|
"out": false
|
|
},
|
|
"search.exclude": {
|
|
"out": true,
|
|
"server": true
|
|
},
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.insertSpaces": false,
|
|
"editor.tabSize": 4,
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"typescript.tsc.autoDetect": "off",
|
|
"eslint.enable": true,
|
|
"eslint.validate": [
|
|
"typescript"
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{ "directory": "./client", "changeProcessCWD": true },
|
|
{ "directory": "./server", "changeProcessCWD": true }
|
|
],
|
|
"eslint.trace.server": "off",
|
|
"eslint.lintTask.enable": false,
|
|
"eslint.format.enable": false
|
|
} |