You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"eslint.format.enable": true,
|
|
"eslint.codeActionsOnSave.mode": "all",
|
|
"[css]": {
|
|
"editor.suggest.insertMode": "replace",
|
|
"gitlens.codeLens.scopes": ["document"],
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "vscode.css-language-features"
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
}
|
|
},
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"files.exclude": {
|
|
"node_modules": true
|
|
},
|
|
"editor.tabSize": 2,
|
|
"files.eol": "\n",
|
|
"[markdown]": {
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": false,
|
|
"editor.tabSize": 4
|
|
}
|
|
}
|
|
|