Skip to content

Commit

Permalink
fix: disable no-use-before-define (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jan 15, 2020
1 parent cb2e22f commit dea2c22
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.json
Expand Up @@ -26,13 +26,14 @@
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"node/no-missing-import": "off",
"node/no-unsupported-features/es-syntax": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/camelcase": "off",
"node/no-missing-import": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-missing-require": "off",
"no-dupe-class-members": "off",
"node/shebang": "off"
"node/shebang": "off",
"no-dupe-class-members": "off"
},
"parserOptions": {
"ecmaVersion": 2018,
Expand Down

0 comments on commit dea2c22

Please sign in to comment.