Add basic VSCode file ignore settings.
This commit is contained in:
parent
77f7fab525
commit
39440895ab
1 changed files with 17 additions and 0 deletions
17
.vscode/settings.json
vendored
Normal file
17
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
// Place your settings in this file to overwrite default and user settings.
|
||||||
|
{
|
||||||
|
// Configure glob patterns for excluding files and folders.
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.git": true,
|
||||||
|
"**/.svn": true,
|
||||||
|
"**/.hg": true,
|
||||||
|
"**/CVS": true,
|
||||||
|
"**/.DS_Store": true,
|
||||||
|
"**/.*.sw*": true, // Vim swap files.
|
||||||
|
"**/*~": true, // Vim backup files.
|
||||||
|
".cljs_*_repl": true,
|
||||||
|
".gitignore": true,
|
||||||
|
".lein*": true,
|
||||||
|
".sw*": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue