mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-08 00:05:00 +00:00
Don't use ESLint formatter for Rust files in VS Code (#228)
* Remove default formatter from vscode settings * Only use eslint formatter on js/ts/json/vue files
This commit is contained in:
parent
d84f7c7137
commit
12b373f1ab
1 changed files with 9 additions and 19 deletions
28
.vscode/settings.json
vendored
28
.vscode/settings.json
vendored
|
@ -3,30 +3,20 @@
|
|||
"editor.formatOnSave": true,
|
||||
"editor.formatOnPaste": true
|
||||
},
|
||||
"[vue]": {
|
||||
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
|
||||
"[typescript, javascript, json, vue]": {
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true
|
||||
},
|
||||
"editor.formatOnSave": true,
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
},
|
||||
"[javascript]": {
|
||||
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
|
||||
"editor.formatOnSave": true,
|
||||
},
|
||||
"[json]": {
|
||||
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
|
||||
"editor.formatOnSave": true,
|
||||
},
|
||||
"[typescript, json]": {
|
||||
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
|
||||
"editor.formatOnSave": true,
|
||||
},
|
||||
"rust-analyzer.diagnostics.disabled": [
|
||||
"missing-unsafe" // Remove when rust-analyzer bug fixes unsafe code on WASM JavaScript https://github.com/rust-analyzer/rust-analyzer/issues/5412
|
||||
],
|
||||
"rust-analyzer.experimental.procAttrMacros": true,
|
||||
"files.eol": "\n",
|
||||
"html.format.wrapLineLength": 200,
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
"eslint.format.enable": true,
|
||||
"eslint.workingDirectories": ["./client/web"],
|
||||
"eslint.workingDirectories": [
|
||||
"./client/web"
|
||||
],
|
||||
"eslint.validate": [
|
||||
"javascript",
|
||||
"typescript",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue