You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removed extra line before main fn
* removed extra line in trainers.py
* - Refactored store.js into two files: store.js and codegen.js
- fixed code rendering issue with additional new lines
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ To contribute to Code-Generator App, you will need Nodejs LTS v16, VSCode, Vetur
27
27
28
28
- Create a virtual environment for python.
29
29
30
+
- For docker users please see [this guide](docker/readme.md)
31
+
30
32
- With pip:
31
33
32
34
```sh
@@ -104,9 +106,9 @@ To add a new template,
104
106
105
107
```sh
106
108
# format
107
-
pnpm run fmt
109
+
pnpm fmt
108
110
# lint
109
-
pnpm run lint
111
+
pnpm source_lint
110
112
```
111
113
112
114
- To ensure the codebase complies with a style guide, we use black and ufmt to format and check codebase for compliance with PEP8. Install and run with:
@@ -117,7 +119,7 @@ To add a new template,
117
119
# format the codes
118
120
bash scripts/run_code_style.sh fmt
119
121
# lint the codes
120
-
bash scripts/run_code_style.sh lint
122
+
bash scripts/run_code_style.sh source_lint
121
123
```
122
124
123
125
_NOTE: Even if you have a half-completed/working PR, sending a PR is still a valid contribution and we can help you finish the PR._
0 commit comments