add vs code settings
This commit is contained in:
parent
e3d989dac0
commit
d077f5aa09
1
.gitignore
vendored
1
.gitignore
vendored
@ -25,5 +25,4 @@ ffpapi.1.gz
|
||||
/dist/
|
||||
/public/
|
||||
tmp/
|
||||
.vscode/
|
||||
assets/playlist_template.json
|
||||
|
7
.vscode/extensions.json
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"rust-lang.rust-analyzer",
|
||||
"statiolake.vscode-rustfmt",
|
||||
"tamasfe.even-better-toml",
|
||||
]
|
||||
}
|
20
.vscode/settings.json
vendored
Normal file
20
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"rust-analyzer.cargo.target": null,
|
||||
"rust-analyzer.checkOnSave": true,
|
||||
"rust-analyzer.cargo.buildScripts.overrideCommand": null,
|
||||
"rust-analyzer.rustfmt.overrideCommand": null,
|
||||
"rust-analyzer.inlayHints.chainingHints.enable": false,
|
||||
"rust-analyzer.inlayHints.parameterHints.enable": false,
|
||||
"rust-analyzer.inlayHints.typeHints.enable": false,
|
||||
"rust-analyzer.diagnostics.disabled": ["unresolved-proc-macro"],
|
||||
"[dockercompose]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[rust]": {
|
||||
"editor.formatOnSave": true,
|
||||
"editor.defaultFormatter": "statiolake.vscode-rustfmt"
|
||||
},
|
||||
"[yaml]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user