We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a23fc27 commit 5e62c88Copy full SHA for 5e62c88
.changeset/selfish-terms-kneel.md
@@ -0,0 +1,5 @@
1
+---
2
+'@nullvoxpopuli/eslint-configs': patch
3
4
+
5
+disable accidentally enabled lint rule, import/exports-last
configs/rules/imports.js
@@ -18,11 +18,13 @@ const rule = {
18
// Anti-foot-gun
19
'import/no-cycle': ['error'],
20
21
+ // Not useful, only stylistic
22
+ 'import/exports-last': 'off',
23
24
// Anti-noise
25
'import/no-unassigned-import': ['error'],
26
27
// Style
- 'import/exports-last': ['error'],
28
'import/no-duplicates': ['error'],
29
'import/newline-after-import': ['error'],
30
},
0 commit comments