Add no-restricted-globals rule (#117)
This commit is contained in:
parent
41ab0639e7
commit
6ae97b3121
|
@ -29,7 +29,8 @@
|
||||||
"no-unreachable": 1,
|
"no-unreachable": 1,
|
||||||
"no-alert": 0,
|
"no-alert": 0,
|
||||||
"react/jsx-uses-react": 1,
|
"react/jsx-uses-react": 1,
|
||||||
"no-unused-vars": [1, { "argsIgnorePattern": "^_" }]
|
"no-unused-vars": [1, { "argsIgnorePattern": "^_" }],
|
||||||
|
"no-restricted-globals": ["error", "event"]
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
"SyntheticInputEvent": false,
|
"SyntheticInputEvent": false,
|
||||||
|
|
Loading…
Reference in New Issue