File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,20 @@ Please follow the existing code style and conventions used in the project. If yo
29
29
```
30
30
pip install -r backend/dev-requirements.txt --upgrade
31
31
```
32
+ Also install the eslint for both `cli/` and `webserver/`. Please use node 16 for that
33
+ *NOTE*: If NVM is not installed, install using [nvm](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating)
34
+ ```
35
+ nvm install 16
36
+ nvm use 16
37
+ ```
38
+ ```
39
+ cd cli
40
+ yarn add eslint@^8.40.0 eslint-config-next@13.5.6 eslint-plugin-import@^2.29.0 eslint-plugin-prettier@^5.0.1 eslint-plugin-react@^7.29.4 eslint-plugin-unused-imports@^3.0.0 --dev
41
+ ```
42
+ ```
43
+ cd webserver
44
+ yarn add eslint@^8.40.0 eslint-config-next@13.5.6 eslint-plugin-import@^2.29.0 eslint-plugin-prettier@^5.0.1 eslint-plugin-react@^7.29.4 eslint-plugin-unused-imports@^3.0.0 --dev
45
+ ```
32
46
Then install it:
33
47
```
34
48
pre-commit install
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ const CliUi = () => {
135
135
} , [ appState , exit ] ) ;
136
136
137
137
useInput ( ( input ) => {
138
- const lowerCaseInput = input . toLowerCase ( ) ;
138
+ const lowerCaseInput = input . toLowerCase ( ) ;
139
139
140
140
if ( appState === AppStates . DOCKER_READY ) {
141
141
dispatch ( appSlice . actions . setLogsStream ( [ ] ) ) ;
You can’t perform that action at this time.
0 commit comments