30 lines
No EOL
753 B
JSON
30 lines
No EOL
753 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
// Newline at EOF.
|
|
"files.insertFinalNewline": true,
|
|
|
|
// 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,
|
|
"target": true, // Top-level build output.
|
|
"*/target": true // Sub-crate build output.
|
|
},
|
|
"rust.customTestConfigurations": [
|
|
{
|
|
"title": "All Crates",
|
|
"args": [
|
|
"--all"
|
|
]
|
|
}
|
|
]
|
|
} |