Graphite/.vscode/settings.json
bjorn3 83d4e7309c
Two improvements to the development workflow (#270)
* Configure rust-analyzer to target wasm32-unknown-unknown

* Watch changes to core rust files
2021-07-16 01:49:52 -07:00

27 lines
677 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,
"rust-analyzer.cargo.target": "wasm32-unknown-unknown",
"files.eol": "\n",
"html.format.wrapLineLength": 200,
"eslint.format.enable": true,
"eslint.workingDirectories": [
"./client/web"
],
"eslint.validate": [
"javascript",
"typescript",
],
"vetur.format.enable": false,
}