2018-11-10 11:44:35 +03:00
|
|
|
{
|
2019-11-17 12:36:47 +03:00
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/CVS": true,
|
|
|
|
"**/.DS_Store": true,
|
2020-04-30 17:48:52 +03:00
|
|
|
"**/*.bk": true,
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/target": true
|
2019-11-17 12:36:47 +03:00
|
|
|
},
|
|
|
|
"[rust]": {
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
|
|
|
"[typescript]": {
|
2020-08-30 09:29:42 +03:00
|
|
|
"editor.formatOnSave": true
|
2019-11-17 12:36:47 +03:00
|
|
|
},
|
|
|
|
"editor.formatOnSave": true,
|
2021-10-17 09:24:17 +03:00
|
|
|
"git.ignoreLimitWarning": true,
|
|
|
|
"eslint.enable": false,
|
2021-10-19 11:25:57 +03:00
|
|
|
"cSpell.allowCompoundWords": true,
|
|
|
|
"cSpell.caseSensitive": true,
|
2022-01-13 17:06:11 +03:00
|
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
2021-12-03 17:14:33 +03:00
|
|
|
"rust-analyzer.checkOnSave.features": [
|
|
|
|
// We use this to make IDE faster
|
|
|
|
"rust-analyzer"
|
|
|
|
]
|
2021-10-05 23:46:49 +03:00
|
|
|
}
|