Skip to content

Commit

Permalink
Disable buggy import/no-unused-modules in hardcore/ts
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgenyOrekhov committed Aug 1, 2021
1 parent 093eb7b commit c6140b2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .eslintrc.json
Expand Up @@ -5,6 +5,13 @@
"project": "./tsconfig.json"
},

"rules": {
"import/no-unused-modules": [
"error",
{ "missingExports": false, "unusedExports": true }
]
},

"overrides": [
{
"files": ["./test.js"],
Expand Down
4 changes: 3 additions & 1 deletion ts.json
Expand Up @@ -80,7 +80,9 @@
"import/extensions": ["error", "never"],

"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/no-type-alias": "off"
"@typescript-eslint/no-type-alias": "off",

"import/no-unused-modules": "off"
}
},

Expand Down

0 comments on commit c6140b2

Please sign in to comment.