Skip to content

Commit 622a3bc

Browse files
committed
[eslint config] [base] [breaking] re-disable newline-after-import
Per import-js/eslint-plugin-import#386
1 parent 51f9b04 commit 622a3bc

File tree

1 file changed

+2
-1
lines changed
  • packages/eslint-config-airbnb-base/rules

1 file changed

+2
-1
lines changed

packages/eslint-config-airbnb-base/rules/imports.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ module.exports = {
108108

109109
// Require a newline after the last import/require in a group
110110
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/newline-after-import.md
111-
'import/newline-after-import': 2,
111+
// TODO: enable when https://github.com/benmosher/eslint-plugin-import/issues/386 is resolved
112+
'import/newline-after-import': 0,
112113

113114
// Require modules with a single export to use a default export
114115
// https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/prefer-default-export.md

0 commit comments

Comments
 (0)