Skip to content

Commit fe40e36

Browse files
committed
fix(import/order): Incorrect config syntax
1 parent f4f30c9 commit fe40e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/imports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module.exports = {
145145

146146
// Enforce a convention in module import order
147147
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md
148-
'import/order': ['warning', {
148+
'import/order': ['warn', {
149149
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
150150
'newlines-between': 'always-and-inside-groups',
151151
}],

0 commit comments

Comments
 (0)