22 lines
677 B
JSON
22 lines
677 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.preferences.quoteStyle": "double",
|
|
"javascript.preferences.quoteStyle": "double",
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/*.js.map": true
|
|
},
|
|
"eslint.validate": [
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"eslint.lintTask.enable": true,
|
|
"eslint.lintTask.options": "\"src/**\" -c \"./.eslintrc.yaml\" --ext=\"ts\" --ext=\"tsx\" --ignore-pattern=\"./src/App/Utilities/YAML/Schema/**\"",
|
|
"editor.tabSize": 2,
|
|
"editor.detectIndentation": false
|
|
}
|