54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
|
{
|
||
|
"editor.formatOnSave": true,
|
||
|
"files.encoding": "utf8",
|
||
|
"files.trimTrailingWhitespace": true,
|
||
|
"files.insertFinalNewline": true,
|
||
|
"search.exclude": {
|
||
|
"public/**": true,
|
||
|
"node_modules/**": true
|
||
|
},
|
||
|
"eslint.validate": [
|
||
|
"javascript",
|
||
|
"javascriptreact",
|
||
|
"typescript",
|
||
|
"typescriptreact"
|
||
|
],
|
||
|
"files.exclude": {
|
||
|
"**/logs": true,
|
||
|
"**/*.log": true,
|
||
|
"**/npm-debug.log*": true,
|
||
|
"**/yarn-debug.log*": true,
|
||
|
"**/yarn-error.log*": true,
|
||
|
"**/pids": true,
|
||
|
"**/*.pid": true,
|
||
|
"**/*.seed": true,
|
||
|
"**/*.pid.lock": true,
|
||
|
"**/lib-cov": true,
|
||
|
"**/coverage": true,
|
||
|
"**/.nyc_output": true,
|
||
|
"**/.grunt": true,
|
||
|
"**/bower_components": true,
|
||
|
"**/.lock-wscript": true,
|
||
|
"build/Release": true,
|
||
|
"**/node_modules/": true,
|
||
|
"**/jspm_packages/": true,
|
||
|
"**/typings/": true,
|
||
|
"**/.npm": true,
|
||
|
"**/.eslintcache": true,
|
||
|
"**/.node_repl_history": true,
|
||
|
"**/*.tgz": true,
|
||
|
"**/.env*": true,
|
||
|
"**/.cache/": true,
|
||
|
"**/public": true,
|
||
|
"**/.DS_Store": true,
|
||
|
"**/yarn-error.log": true,
|
||
|
"**/.pnp/": true,
|
||
|
"**/.pnp.js": true,
|
||
|
"**/.yarn-integrity": true
|
||
|
},
|
||
|
"editor.codeActionsOnSave": {
|
||
|
"source.fixAll.eslint": true,
|
||
|
"source.fixAll": true
|
||
|
}
|
||
|
}
|