mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
* Implement select all layers shortcut * Adjust menu entry for Select All Layers * Avoid selecting the root of the document when selecting all layers * Implement deselect all layers * Fix formatting * Add extensions.json so VS Code recommends useful extensions * Add rust-analyzer as the default Rust formatter
26 lines
619 B
JSON
26 lines
619 B
JSON
{
|
|
"[rust]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.defaultFormatter": "matklad.rust-analyzer",
|
|
},
|
|
"[typescript, javascript, json, vue]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
},
|
|
"rust-analyzer.experimental.procAttrMacros": true,
|
|
"files.eol": "\n",
|
|
"html.format.wrapLineLength": 200,
|
|
"eslint.format.enable": true,
|
|
"eslint.workingDirectories": [
|
|
"./client/web"
|
|
],
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"typescript",
|
|
],
|
|
"vetur.format.enable": false,
|
|
} |