eslint-plugin-putout 12.6.0 → 12.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/lib/add-newline-after-function-call/index.js +2 -13
- package/lib/index.js +1 -0
- package/lib/no-unresolved/README.md +8 -0
- package/lib/no-unresolved/index.js +7 -3
- package/lib/putout/index.js +10 -1
- package/lib/putout/parse-error.js +8 -0
- package/lib/ts.js +3 -0
- package/lib/wrap.js +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,7 +101,11 @@ When using 🐊`Putout` in IDE with `--fix` on save, or when you want to disable
|
|
|
101
101
|
}
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
Disabled `ESLint` rules:
|
|
105
|
+
|
|
106
|
+
- [no-useless-return](https://eslint.org/docs/rules/no-useless-return)
|
|
107
|
+
|
|
108
|
+
Disabled 🐊`Putout` rules:
|
|
105
109
|
|
|
106
110
|
- [remove-empty](https://github.com/coderaiser/putout/tree/v22.0.0/packages/plugin-remove-empty);
|
|
107
111
|
- [remove-unused-variables](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-variables);
|
|
@@ -15,7 +15,7 @@ const regExp = /^;?\n( +)?\n +$/;
|
|
|
15
15
|
module.exports.category = 'layout';
|
|
16
16
|
module.exports.report = () => 'Add newline after function call';
|
|
17
17
|
|
|
18
|
-
module.exports.filter = ({text, node, getText, getCommentsAfter}) => {
|
|
18
|
+
module.exports.filter = ({text, node, getText, getCommentsAfter, getSpacesAfterNode}) => {
|
|
19
19
|
if (!isExpressionStatement(node.parent))
|
|
20
20
|
return false;
|
|
21
21
|
|
|
@@ -33,7 +33,7 @@ module.exports.filter = ({text, node, getText, getCommentsAfter}) => {
|
|
|
33
33
|
if (n < 3)
|
|
34
34
|
return false;
|
|
35
35
|
|
|
36
|
-
const spaces = getSpacesAfterNode(node, {text
|
|
36
|
+
const spaces = getSpacesAfterNode(node, {text});
|
|
37
37
|
|
|
38
38
|
if (regExp.test(spaces))
|
|
39
39
|
return false;
|
|
@@ -84,14 +84,3 @@ module.exports.include = () => [
|
|
|
84
84
|
'CallExpression',
|
|
85
85
|
];
|
|
86
86
|
|
|
87
|
-
function getSpacesAfterNode(node, {getText, text = getText(node)}) {
|
|
88
|
-
let spaces = '';
|
|
89
|
-
let i = 0;
|
|
90
|
-
|
|
91
|
-
while (!spaces || /^[ \n;]+$/.test(spaces))
|
|
92
|
-
spaces = getText(node, 0, ++i)
|
|
93
|
-
.replace(text, '');
|
|
94
|
-
|
|
95
|
-
return spaces.slice(0, -1);
|
|
96
|
-
}
|
|
97
|
-
|
package/lib/index.js
CHANGED
|
@@ -12,6 +12,10 @@ Examples of **incorrect** code for this rule:
|
|
|
12
12
|
```js
|
|
13
13
|
import x from './y';
|
|
14
14
|
import dir from './dir';
|
|
15
|
+
|
|
16
|
+
export * from './y';
|
|
17
|
+
export * as dir from './dir';
|
|
18
|
+
export {m} from './y';
|
|
15
19
|
```
|
|
16
20
|
|
|
17
21
|
[File extension is mandatory](https://nodejs.org/api/esm.html#esm_mandatory_file_extensions) and will produce an error from `node.js`:
|
|
@@ -26,4 +30,8 @@ Examples of **correct** code for this rule:
|
|
|
26
30
|
```js
|
|
27
31
|
import x from './y.js';
|
|
28
32
|
import dir from './dir/index.js';
|
|
33
|
+
|
|
34
|
+
export * from './y.js';
|
|
35
|
+
export * as dir from './dir/index.js';
|
|
36
|
+
export {m} from './y.js';
|
|
29
37
|
```
|
|
@@ -18,13 +18,17 @@ const isRelativeEnd = (a) => RegExp(`${RELATIVE}$`).test(a);
|
|
|
18
18
|
const getDir = (a) => a === '<input>' ? cwd : dirname(a);
|
|
19
19
|
const getValue = (node) => {
|
|
20
20
|
const {source} = node;
|
|
21
|
-
|
|
22
|
-
return value;
|
|
21
|
+
return source?.value;
|
|
23
22
|
};
|
|
24
23
|
|
|
25
24
|
module.exports.category = 'errors';
|
|
26
25
|
module.exports.report = () => 'Always add an extension to relative imports';
|
|
27
|
-
module.exports.include = () => [
|
|
26
|
+
module.exports.include = () => [
|
|
27
|
+
'ImportDeclaration',
|
|
28
|
+
'ImportExpression',
|
|
29
|
+
'ExportAllDeclaration',
|
|
30
|
+
'ExportNamedDeclaration',
|
|
31
|
+
];
|
|
28
32
|
|
|
29
33
|
module.exports.fix = ({node, text, filename}) => {
|
|
30
34
|
const value = getValue(node);
|
package/lib/putout/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
const tryCatch = require('try-catch');
|
|
4
|
+
|
|
3
5
|
const {
|
|
4
6
|
ignores,
|
|
5
7
|
findPlaces,
|
|
@@ -13,6 +15,7 @@ const traverse = require('@babel/traverse').default;
|
|
|
13
15
|
const v8 = require('v8');
|
|
14
16
|
|
|
15
17
|
const parseOptions = require('putout/parse-options');
|
|
18
|
+
const {parseError} = require('./parse-error');
|
|
16
19
|
|
|
17
20
|
const cwd = process.cwd();
|
|
18
21
|
const getContextOptions = ({options}) => {
|
|
@@ -55,7 +58,13 @@ module.exports = {
|
|
|
55
58
|
parser: createParser(node),
|
|
56
59
|
});
|
|
57
60
|
|
|
58
|
-
const places = findPlaces
|
|
61
|
+
const [error, places = []] = tryCatch(findPlaces, ast, text, resultOptions);
|
|
62
|
+
|
|
63
|
+
if (error)
|
|
64
|
+
context.report({
|
|
65
|
+
message: `${parseError(error)} (putout)`,
|
|
66
|
+
node,
|
|
67
|
+
});
|
|
59
68
|
|
|
60
69
|
for (const {rule, message, position} of places) {
|
|
61
70
|
context.report({
|
package/lib/ts.js
CHANGED
package/lib/wrap.js
CHANGED
|
@@ -8,10 +8,15 @@ const prepare = (plugin, context, options) => (node) => {
|
|
|
8
8
|
const getText = source.getText.bind(source);
|
|
9
9
|
const getCommentsBefore = source.getCommentsBefore.bind(source);
|
|
10
10
|
const getCommentsAfter = source.getCommentsAfter.bind(source);
|
|
11
|
+
|
|
11
12
|
const getSpacesBeforeNode = createGetSpacesBeforeNode({
|
|
12
13
|
getText,
|
|
13
14
|
});
|
|
14
15
|
|
|
16
|
+
const getSpacesAfterNode = createGetSpacesAfterNode({
|
|
17
|
+
getText,
|
|
18
|
+
});
|
|
19
|
+
|
|
15
20
|
const text = getText(node);
|
|
16
21
|
|
|
17
22
|
const result = filter({
|
|
@@ -22,6 +27,7 @@ const prepare = (plugin, context, options) => (node) => {
|
|
|
22
27
|
getCommentsBefore,
|
|
23
28
|
getCommentsAfter,
|
|
24
29
|
getSpacesBeforeNode,
|
|
30
|
+
getSpacesAfterNode,
|
|
25
31
|
filename,
|
|
26
32
|
});
|
|
27
33
|
|
|
@@ -106,3 +112,14 @@ const createGetSpacesBeforeNode = ({getText}) => (node, text = getText(node)) =>
|
|
|
106
112
|
return spaces.slice(1);
|
|
107
113
|
};
|
|
108
114
|
|
|
115
|
+
const createGetSpacesAfterNode = ({getText}) => (node, {text = getText(node)}) => {
|
|
116
|
+
let spaces = '';
|
|
117
|
+
let i = 0;
|
|
118
|
+
|
|
119
|
+
while (!spaces || /^[ \n;]+$/.test(spaces))
|
|
120
|
+
spaces = getText(node, 0, ++i)
|
|
121
|
+
.replace(text, '');
|
|
122
|
+
|
|
123
|
+
return spaces.slice(0, -1);
|
|
124
|
+
};
|
|
125
|
+
|