Turn errors into warnings.

This commit is contained in:
Ace Pace 2020-05-01 15:32:01 +03:00
parent 24dc84ced2
commit fc46eecb2d
1 changed files with 9 additions and 1 deletions

View File

@ -51,6 +51,14 @@
"no-unreachable": 1,
"no-alert": 0,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1
"react/jsx-uses-vars": 1,
"react/jsx-key": 1,
"react/prop-types": 1,
"react/no-unescaped-entities": 1,
"react/no-unknown-property": [1, { "ignore": ["class"] }],
"react/no-string-refs": 1,
"react/display-name": 1,
"no-useless-escape": 1,
"no-prototype-builtins": 1
}
}