Skip to content

Commit ba1b7b1

Browse files
committed
fix: adjust ESLint import validation from error to warn
1 parent 7073aa3 commit ba1b7b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eslint.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default defineConfig(
7474

7575
// Import rules
7676
'import/order': [
77-
'error',
77+
'warn',
7878
{
7979
groups: [
8080
'builtin',
@@ -92,8 +92,8 @@ export default defineConfig(
9292
alphabetize: { order: 'asc', caseInsensitive: true },
9393
},
9494
],
95-
'import/newline-after-import': 'error',
96-
'import/no-duplicates': 'error',
95+
'import/newline-after-import': 'warn',
96+
'import/no-duplicates': 'warn',
9797
},
9898
},
9999

0 commit comments

Comments
 (0)