2017-03-09 19:30:48 +00:00
|
|
|
// Place your settings in this file to overwrite default and user settings.
|
|
|
|
{
|
2017-04-26 17:09:50 +00:00
|
|
|
// Newline at EOF.
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
|
2017-03-09 19:30:48 +00:00
|
|
|
// 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,
|
2017-03-09 19:47:20 +00:00
|
|
|
".sw*": true,
|
|
|
|
"target": true, // Top-level build output.
|
|
|
|
"*/target": true // Sub-crate build output.
|
2017-03-13 07:39:25 +00:00
|
|
|
},
|
|
|
|
"rust.customTestConfigurations": [
|
|
|
|
{
|
|
|
|
"title": "All Crates",
|
|
|
|
"args": [
|
|
|
|
"--all"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2017-03-09 19:30:48 +00:00
|
|
|
}
|