File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- lint-frontend :
2- make -C frontend lint
3-
41install :
5- npm ci
6-
7- start-frontend :
8- make -C frontend start
9-
10- start-backend :
11- npx start-server -s ./frontend/dist
2+ npm ci && make -C frontend install
123
13- deploy :
14- git push heroku main
4+ build :
5+ npm run build
156
167start :
178 make start-backend
189
10+ start-backend :
11+ npm run start
12+
13+ start-frontend :
14+ cd frontend && npm start
15+
1916develop :
2017 make start-backend & make start-frontend
2118
22- build :
23- rm -rf frontend/dist
24- npm run build
19+ lint :
20+ make -C frontend lint
21+
Original file line number Diff line number Diff line change 55extends :
66 - airbnb
77 - plugin:react/recommended
8- - plugin:functional/recommended
98 - plugin:react-hooks/recommended
109
1110parserOptions :
@@ -16,21 +15,22 @@ parserOptions:
1615
1716plugins :
1817 - react
19- - functional
18+ - react-hooks
2019
2120rules :
2221 import/extensions : 0
2322 import/no-unresolved : 0
2423 react/prop-types : 0
2524 no-console : 0
2625 react/react-in-jsx-scope : 0
27- functional/no-conditional-statement : 0
28- functional/no-expression-statement : 0
26+ functional/no-conditional-statements : 0
27+ functional/no-expression-statements : 0
2928 functional/immutable-data : 0
3029 functional/functional-parameters : 0
3130 functional/no-try-statement : 0
3231 functional/no-throw-statement : 0
3332 no-underscore-dangle : [2, { "allow": ["__filename", "__dirname"] }]
3433 react/function-component-definition : [2, { "namedComponents": "arrow-function" }]
3534 testing-library/no-debug : 0
36- react/jsx-filename-extension : [1, { "extensions": [".js", ".jsx"] }]
35+ react/jsx-filename-extension : [1, { "extensions": [".js", ".jsx"] }]
36+ functional/no-return-void : 0
You can’t perform that action at this time.
0 commit comments