mirror of
https://github.com/theoludwig/advent_of_code_2023.git
synced 2024-10-29 22:17:19 +01:00
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"
|
||
|
}
|
||
|
}
|