Skip to content

Commit

Permalink
feat(basic): consider comments for newline-after-import (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Apr 10, 2023
1 parent 5240f68 commit ebb96c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-basic/index.js
Expand Up @@ -207,7 +207,7 @@ module.exports = {
'import/no-mutable-exports': 'error',
'import/no-unresolved': 'off',
'import/no-absolute-path': 'off',
'import/newline-after-import': ['error', { count: 1 }],
'import/newline-after-import': ['error', { count: 1, considerComments: true }],

// Common
'semi': ['error', 'never'],
Expand Down

0 comments on commit ebb96c4

Please sign in to comment.