Skip to content

Commit 1d9abb1

Browse files
committed
fix: disable import/export for typescript
1 parent 3029608 commit 1d9abb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/plugin-import-rules.js

+3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ exports.pluginImportTypeScriptRulesExtra = {
1919
// Buggy on TypeScript:
2020
"import/no-unresolved": "off",
2121
"import/named": "off",
22+
// doesn't understand type namespaces
2223
"import/namespace": "off",
24+
// thinks types are mutable!
25+
"import/export": "off"
2326
}
2427

2528
exports.pluginImportSettings = {

0 commit comments

Comments
 (0)