41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2,
|
|
|
|
"eslint.packageManager": "yarn",
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
|
|
"files.associations": {
|
|
// XXX: PostCSS extension doesn't provide as nice autocompletion as
|
|
// VSCode's native CSS support. But this doesn't understand nested rules...
|
|
"*.pcss": "css",
|
|
},
|
|
"files.encoding": "utf8",
|
|
"files.eol": "\n",
|
|
"files.exclude": {
|
|
"**/.tsbuildinfo": true,
|
|
},
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"flow.enabled": false,
|
|
|
|
"javascript.format.insertSpaceAfterConstructor": true,
|
|
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
|
|
"javascript.format.semicolons": "remove",
|
|
"javascript.preferences.quoteStyle": "single",
|
|
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true
|
|
},
|
|
|
|
"typescript.format.insertSpaceAfterConstructor": true,
|
|
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
|
|
"typescript.format.semicolons": "remove",
|
|
"typescript.preferences.quoteStyle": "single",
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
}
|