File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,26 @@ If you want to build app:
21
21
- Build the app ` pnpm tauri build `
22
22
- After that you can find executable in ` src-tauri/target ` folder.
23
23
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.
You can’t perform that action at this time.
0 commit comments