Turn back on linting for modern

This commit is contained in:
Jordan Eldredge 2019-08-18 14:06:43 -07:00
parent 0be6ff9ede
commit 2365732a71
2 changed files with 18 additions and 1 deletions

View file

@ -2,5 +2,4 @@
built/
coverage/
**/node_modules/
modern/
examples/webpack/bundle.js

18
modern/.eslintrc Normal file
View file

@ -0,0 +1,18 @@
{
"rules": {
// TODO: Turn these all back on
"camelcase": "off",
"@typescript-eslint/no-unused-vars": "off",
"prefer-const": "off",
"no-shadow": "off",
"no-nested-ternary": "off",
"no-dupe-keys": "off",
"no-undef": "off",
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"no-return-await": "off",
"eqeqeq": "off",
"no-else-return": "off",
"import/no-extraneous-dependencies": "off"
}
}