mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 09:38:16 +03:00
28 lines
630 B
JSON
28 lines
630 B
JSON
{
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/*.bk": true,
|
|
"**/node_modules": true,
|
|
"**/target": true
|
|
},
|
|
"[rust]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"git.ignoreLimitWarning": true,
|
|
"eslint.enable": false,
|
|
"cSpell.allowCompoundWords": true,
|
|
"cSpell.caseSensitive": true,
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
|
"rust-analyzer.checkOnSave.features": [
|
|
// We use this to make IDE faster
|
|
"rust-analyzer"
|
|
]
|
|
} |