Skip to content

Commit

Permalink
VSCode: Standard watcherExclude config + formatting :O
Browse files Browse the repository at this point in the history
Signed-off-by: Patrik Kullman <[email protected]>
  • Loading branch information
Patrik Kullman committed Feb 23, 2019
1 parent dfba73a commit d221217
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
{ "language": "javascript", "autoFix": true },
{ "language": "html", "autoFix": true }
]
}
{
"language": "javascript",
"autoFix": true
},
{
"language": "html",
"autoFix": true
}
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/bower_components/**": true
}
}

0 comments on commit d221217

Please sign in to comment.