moonfire-nvr/.vscode/settings.json
2021-02-22 13:54:42 -08:00

46 lines
1.2 KiB
JSON

{
// General settings (notably including Javascript/Typescript).
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.rulers": [
{
"column": 80,
"color": "#cc8888"
}
],
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.insertSpaces": true,
"[markdown]": {
"editor.tabSize": 4,
// I find Prettier's markdown style jarring, including converting `*`
// bullets to `-` and two-column indents. It's not customizable either.
// Don't use it.
"editor.defaultFormatter": null
},
// Rust-specific overrides.
"[rust]": {
"editor.tabSize": 4,
"editor.rulers": [
80,
{
"column": 100,
"color": "#cc8888"
}
],
// It seems like rust-analyzer is supposed to be able to format
// Rust files, but with "matklad.rust-analyzer" here, VS Code says
// "There is no formatter for 'rust' files installed."
"editor.defaultFormatter": "matklad.rust-analyzer"
//"editor.defaultFormatter": null
},
"rust-analyzer.inlayHints.enable": false
}