mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
26 lines
635 B
JSON
26 lines
635 B
JSON
{
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.detectIndentation": false,
|
|
"files.encoding": "utf8",
|
|
"files.eol": "\n",
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"todo-tree.filtering.excludeGlobs": ["**/node_modules/**"],
|
|
"eslint.validate": [
|
|
"vue",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
],
|
|
"vetur.validation.template": true,
|
|
"vetur.useWorkspaceDependencies": true,
|
|
"remote.extensionKind": {
|
|
"ms-azuretools.vscode-docker": "ui"
|
|
},
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
}
|