2017-03-02 17:02:06 +00:00
|
|
|
{
|
2017-06-30 14:32:57 +00:00
|
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
|
|
"search.exclude": {
|
2019-09-06 20:04:55 +00:00
|
|
|
".awcache": true,
|
2017-06-30 14:32:57 +00:00
|
|
|
"**/dist": true,
|
2019-09-06 20:04:55 +00:00
|
|
|
"**/node_modules": true,
|
2017-11-14 14:29:47 +00:00
|
|
|
"**/out": true,
|
2020-11-27 10:55:37 +00:00
|
|
|
"app/test/fixtures": true,
|
|
|
|
"vendor": true
|
2017-06-30 14:32:57 +00:00
|
|
|
},
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/dist": true,
|
|
|
|
"**/out": true,
|
2017-11-14 14:29:47 +00:00
|
|
|
"tslint-rules/**/*.js": true,
|
2018-01-11 18:56:20 +00:00
|
|
|
".awcache": true,
|
|
|
|
".eslintcache": true
|
2017-06-30 14:32:57 +00:00
|
|
|
},
|
2020-11-26 10:52:57 +00:00
|
|
|
"files.insertFinalNewline": true,
|
2017-06-30 14:32:57 +00:00
|
|
|
"editor.tabSize": 2,
|
|
|
|
"prettier.semi": false,
|
|
|
|
"prettier.singleQuote": true,
|
|
|
|
"prettier.trailingComma": "es5",
|
2017-11-28 05:03:54 +00:00
|
|
|
"editor.formatOnSave": true,
|
2019-03-15 15:00:51 +00:00
|
|
|
"prettier.ignorePath": ".prettierignore",
|
2019-06-14 14:19:03 +00:00
|
|
|
"tslint.ignoreDefinitionFiles": true,
|
|
|
|
"eslint.options": {
|
|
|
|
"configFile": ".eslintrc.yml",
|
|
|
|
"rulePaths": ["eslint-rules"]
|
2019-06-21 13:23:51 +00:00
|
|
|
},
|
|
|
|
"eslint.validate": [
|
|
|
|
"javascript",
|
|
|
|
"javascriptreact",
|
|
|
|
"typescript",
|
|
|
|
"typescriptreact"
|
|
|
|
]
|
2017-03-02 17:02:06 +00:00
|
|
|
}
|