mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
35 lines
No EOL
1,018 B
JSON
35 lines
No EOL
1,018 B
JSON
{
|
|
"[rust]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true
|
|
},
|
|
"[vue]": {
|
|
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
|
|
"editor.formatOnSave": true,
|
|
},
|
|
"[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
|
|
],
|
|
"files.eol": "\n",
|
|
"html.format.wrapLineLength": 200,
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"eslint.format.enable": true,
|
|
"eslint.workingDirectories": ["./client/web"],
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript",
|
|
],
|
|
"vetur.format.enable": false,
|
|
} |