Disabled prop-types warning in eslint

(Accidentally force-pushed over the previous commit changing this)
This commit is contained in:
Shreya 2020-06-24 13:58:52 +05:30
parent f21dbde27d
commit 53e6f893c6
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ script:
- cd monkey_island/cc/ui
- npm ci # See https://docs.npmjs.com/cli/ci.html
- eslint ./src --quiet # Test for errors
- JS_WARNINGS_AMOUNT_UPPER_LIMIT=490
- JS_WARNINGS_AMOUNT_UPPER_LIMIT=90
- eslint ./src --max-warnings $JS_WARNINGS_AMOUNT_UPPER_LIMIT # Test for max warnings
after_success:

View File

@ -53,7 +53,7 @@
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/jsx-key": 1,
"react/prop-types": 1,
"react/prop-types": 0,
"react/no-unescaped-entities": 1,
"react/no-unknown-property": [1, { "ignore": ["class"] }],
"react/no-string-refs": 1,