forked from p15670423/monkey
Turn errors into warnings.
This commit is contained in:
parent
24dc84ced2
commit
fc46eecb2d
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue