Skip to content

Commit f47cfa4

Browse files
committed
Update readme
1 parent ea7d227 commit f47cfa4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,26 @@ If you want to build app:
2121
- Build the app `pnpm tauri build`
2222
- After that you can find executable in `src-tauri/target` folder.
2323

24+
25+
# Contributing
26+
If you want to contribute you should install these extensions and set-up these settings.
27+
28+
- Install `Eslint` from vscode marketplace.
29+
- Install `Volar` from vscode marketplace.
30+
- Add the following settings to your `.vscode/settings.json`
31+
32+
```json
33+
{
34+
"[rust]": {
35+
"editor.defaultFormatter": "rust-lang.rust-analyzer"
36+
},
37+
"eslint.enable": true,
38+
"editor.codeActionsOnSave": {
39+
"source.fixAll.eslint": true
40+
},
41+
"volar.completion.normalizeComponentImportName": true,
42+
"volar.completion.preferredAttrNameCase": "camel",
43+
"volar.completion.preferredTagNameCase": "pascal"
44+
}
45+
```
46+
- And lastly in extensions page search `@builtin typescript` then disable TypeScript LSP for your workspace, after reloading vscode you're good to go.

0 commit comments

Comments
 (0)