Showing
2 changed files
with
6 additions
and
3 deletions
This diff could not be displayed because it is too large.
... | @@ -8,6 +8,7 @@ | ... | @@ -8,6 +8,7 @@ |
8 | "@testing-library/react": "^9.3.2", | 8 | "@testing-library/react": "^9.3.2", |
9 | "@testing-library/user-event": "^7.1.2", | 9 | "@testing-library/user-event": "^7.1.2", |
10 | "axios": "^0.19.2", | 10 | "axios": "^0.19.2", |
11 | + "eslint": "^7.14.0", | ||
11 | "immer": "^7.0.5", | 12 | "immer": "^7.0.5", |
12 | "include-media": "^1.4.9", | 13 | "include-media": "^1.4.9", |
13 | "moment": "^2.27.0", | 14 | "moment": "^2.27.0", |
... | @@ -30,7 +31,10 @@ | ... | @@ -30,7 +31,10 @@ |
30 | "eject": "react-scripts eject" | 31 | "eject": "react-scripts eject" |
31 | }, | 32 | }, |
32 | "eslintConfig": { | 33 | "eslintConfig": { |
33 | - "extends": "react-app" | 34 | + "extends": "react-app", |
35 | + "rules": { | ||
36 | + "jsx-a11y/anchor-is-valid": "off" | ||
37 | + } | ||
34 | }, | 38 | }, |
35 | "browserslist": { | 39 | "browserslist": { |
36 | "production": [ | 40 | "production": [ |
... | @@ -44,6 +48,5 @@ | ... | @@ -44,6 +48,5 @@ |
44 | "last 1 safari version" | 48 | "last 1 safari version" |
45 | ] | 49 | ] |
46 | }, | 50 | }, |
47 | - "proxy": "http://localhost:4000/", | 51 | + "proxy": "http://localhost:4000/" |
48 | - "secure" : false | ||
49 | } | 52 | } | ... | ... |
-
Please register or login to post a comment