Skip to content

Commit

Permalink
Fix conflicts between ESLint and VSC.
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswilddev committed Nov 19, 2021
1 parent 4c9bbbd commit 2dff197
Showing 1 changed file with 27 additions and 24 deletions.
51 changes: 27 additions & 24 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"[typescript]": {
"editor.formatOnSave": false,
},
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"**/*.js": true,
"**/*.d.ts": true,
".nyc_output": true,
"coverage": true
},
"typescript.tsdk": "./node_modules/typescript.lib"
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"[typescript]": {
"editor.formatOnSave": false,
},
"[typescriptreact]": {
"editor.formatOnSave": false,
},
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"**/*.js": true,
"**/*.d.ts": true,
".nyc_output": true,
"coverage": true
},
"typescript.tsdk": "./node_modules/typescript.lib"
}

0 comments on commit 2dff197

Please sign in to comment.