19 lines
534 B
JSON
19 lines
534 B
JSON
{
|
|
"rust-analyzer.check.command": "clippy",
|
|
"[rust]": {
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
|
"editor.tabSize": 4,
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[toml]": {
|
|
"editor.defaultFormatter": "tamasfe.even-better-toml",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"prettier.configPath": ".prettierrc.json",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit"
|
|
}
|
|
}
|