Skip to content

Commit 5e62c88

Browse files
committed
Disable import lint rule
1 parent a23fc27 commit 5e62c88

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.changeset/selfish-terms-kneel.md

+5
Original file line numberDiff line numberDiff line change
@@ -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

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ const rule = {
1818
// Anti-foot-gun
1919
'import/no-cycle': ['error'],
2020

21+
// Not useful, only stylistic
22+
'import/exports-last': 'off',
23+
2124
// Anti-noise
2225
'import/no-unassigned-import': ['error'],
2326

2427
// Style
25-
'import/exports-last': ['error'],
2628
'import/no-duplicates': ['error'],
2729
'import/newline-after-import': ['error'],
2830
},

0 commit comments

Comments
 (0)