Skip to content

Commit b33a66f

Browse files
committed
Breaking - newline-after-import: Do not require empty line after inline require (#570)
1 parent c8dcf4d commit b33a66f

File tree

3 files changed

+64
-16
lines changed

3 files changed

+64
-16
lines changed

docs/rules/newline-after-import.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# newline-after-import
22

3-
Reports if there's no new line after last import/require in group.
3+
Enforces having an empty line after the last top-level import statement or require call.
44

55
## Rule Details
66

7-
**NOTE**: In each of those examples you can replace `import` call with `require`.
8-
97
Valid:
108

119
```js
@@ -21,6 +19,13 @@ import { bar } from 'bar-lib'
2119
const FOO = 'BAR'
2220
```
2321

22+
```js
23+
const FOO = require('./foo')
24+
const BAR = require('./bar')
25+
26+
const BAZ = 1
27+
```
28+
2429
...whereas here imports will be reported:
2530

2631
```js
@@ -35,6 +40,12 @@ const FOO = 'BAR'
3540
import { bar } from 'bar-lib'
3641
```
3742

43+
```js
44+
const FOO = require('./foo')
45+
const BAZ = 1
46+
const BAR = require('./bar')
47+
```
48+
3849
## When Not To Use It
3950

4051
If you like to visually group module imports with its usage, you don't want to use this rule.

src/rules/newline-after-import.js

+19-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,14 @@ module.exports = function (context) {
6363
}
6464
}
6565

66+
let level = 0
67+
function incrementLevel() {
68+
level++
69+
}
70+
function decrementLevel() {
71+
level--
72+
}
73+
6674
return {
6775
ImportDeclaration: function (node) {
6876
const { parent } = node
@@ -78,7 +86,7 @@ module.exports = function (context) {
7886
},
7987
CallExpression: function(node) {
8088
const scope = context.getScope()
81-
if (isStaticRequire(node)) {
89+
if (isStaticRequire(node) && level === 0) {
8290
const currentScope = scopes[scopeIndex]
8391

8492
if (scope === currentScope.scope) {
@@ -122,5 +130,15 @@ module.exports = function (context) {
122130
})
123131
})
124132
},
133+
FunctionDeclaration: incrementLevel,
134+
FunctionExpression: incrementLevel,
135+
ArrowFunctionExpression: incrementLevel,
136+
BlockStatement: incrementLevel,
137+
ObjectExpression: incrementLevel,
138+
'FunctionDeclaration:exit': decrementLevel,
139+
'FunctionExpression:exit': decrementLevel,
140+
'ArrowFunctionExpression:exit': decrementLevel,
141+
'BlockStatement:exit': decrementLevel,
142+
'ObjectExpression:exit': decrementLevel,
125143
}
126144
}

tests/src/rules/newline-after-import.js

+31-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { RuleTester } from 'eslint'
22

3-
const IMPORT_ERROR_MESSAGE = 'Expected empty line after import statement not followed by another import.';
4-
const REQUIRE_ERROR_MESSAGE = 'Expected empty line after require statement not followed by another require.';
3+
const IMPORT_ERROR_MESSAGE = 'Expected empty line after import statement not followed by another import.'
4+
const REQUIRE_ERROR_MESSAGE = 'Expected empty line after require statement not followed by another require.'
55

66
const ruleTester = new RuleTester()
77

@@ -21,7 +21,6 @@ ruleTester.run('newline-after-import', require('rules/newline-after-import'), {
2121
parserOptions: { ecmaVersion: 6 } ,
2222
},
2323
"function x(){ require('baz'); }",
24-
2524
"a(require('b'), require('c'), require('d'));",
2625
`function foo() {
2726
switch (renderData.modalViewKey) {
@@ -100,7 +99,35 @@ ruleTester.run('newline-after-import', require('rules/newline-after-import'), {
10099
{
101100
code: "var foo = require('foo-module');\n\nvar a = 123;\n\nvar bar = require('bar-lib');",
102101
parserOptions: { sourceType: 'module' }
103-
}
102+
},
103+
{
104+
code: `
105+
function foo() {
106+
var foo = require('foo');
107+
foo();
108+
}
109+
`,
110+
parserOptions: { sourceType: 'module' },
111+
},
112+
{
113+
code: `
114+
if (true) {
115+
var foo = require('foo');
116+
foo();
117+
}
118+
`,
119+
parserOptions: { sourceType: 'module' },
120+
},
121+
{
122+
code: `
123+
function a() {
124+
var assign = Object.assign || require('object-assign');
125+
var foo = require('foo');
126+
var bar = 42;
127+
}
128+
`,
129+
parserOptions: { sourceType: 'module' },
130+
},
104131
],
105132

106133
invalid: [
@@ -183,14 +210,6 @@ ruleTester.run('newline-after-import', require('rules/newline-after-import'), {
183210
message: REQUIRE_ERROR_MESSAGE,
184211
} ]
185212
},
186-
{
187-
code: "function a() {\nvar assign = Object.assign || require('object-assign');\nvar foo = require('foo');\nvar bar = 42; }",
188-
errors: [ {
189-
line: 3,
190-
column: 1,
191-
message: REQUIRE_ERROR_MESSAGE,
192-
} ]
193-
},
194213
{
195214
code: "require('a');\nfoo(require('b'), require('c'), require('d'));\nrequire('d');\nvar foo = 'bar';",
196215
errors: [

0 commit comments

Comments
 (0)