mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-26 03:24:18 +00:00
Turn back on linting for modern
This commit is contained in:
parent
0be6ff9ede
commit
2365732a71
2 changed files with 18 additions and 1 deletions
|
|
@ -2,5 +2,4 @@
|
|||
built/
|
||||
coverage/
|
||||
**/node_modules/
|
||||
modern/
|
||||
examples/webpack/bundle.js
|
||||
|
|
|
|||
18
modern/.eslintrc
Normal file
18
modern/.eslintrc
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue