mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
e8063baed5
Co-Authored-By: Sergio Padrino <1083228+sergiou87@users.noreply.github.com>
40 lines
952 B
JSON
40 lines
952 B
JSON
{
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"search.exclude": {
|
|
".awcache": true,
|
|
"**/dist": true,
|
|
"**/node_modules": true,
|
|
"**/out": true,
|
|
"app/test/fixtures": true,
|
|
"vendor": true
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/.DS_Store": true,
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/out": true,
|
|
".awcache": true,
|
|
".eslintcache": true
|
|
},
|
|
"files.insertFinalNewline": true,
|
|
"editor.tabSize": 2,
|
|
"prettier.semi": false,
|
|
"prettier.singleQuote": true,
|
|
"prettier.trailingComma": "es5",
|
|
"editor.formatOnSave": true,
|
|
"prettier.ignorePath": ".prettierignore",
|
|
"eslint.options": {
|
|
"overrideConfigFile": ".eslintrc.yml",
|
|
"rulePaths": ["eslint-rules"]
|
|
},
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|