eslint-plugin-stratified-design 0.4.2 → 0.5.1
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/.github/workflows/release.yml +0 -8
- package/docs/rules/no-same-level-funcs.md +25 -0
- package/lib/helpers/lowerLevelImports/1 layer.js +6 -2
- package/lib/rules/no-same-level-funcs.js +41 -1
- package/package.json +1 -1
- package/scripts/versioning.js +25 -3
- package/tests/lib/rules/lower-level-imports.js +29 -1
- package/tests/lib/rules/no-same-level-funcs.js +30 -1
|
@@ -20,14 +20,6 @@ jobs:
|
|
|
20
20
|
- name: Update package version
|
|
21
21
|
run: npm run versioning
|
|
22
22
|
|
|
23
|
-
- name: Commit and push package.json
|
|
24
|
-
run: |
|
|
25
|
-
git config --local user.email "action@github.com"
|
|
26
|
-
git config --local user.name "GitHub Action"
|
|
27
|
-
git commit -a -m "Update package version"
|
|
28
|
-
TARGET_COMMITISH=$(jq -r '.release.target_commitish' $GITHUB_EVENT_PATH)
|
|
29
|
-
git push origin HEAD:${TARGET_COMMITISH}
|
|
30
|
-
|
|
31
23
|
- name: Install dependencies
|
|
32
24
|
run: npm ci
|
|
33
25
|
|
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This rule prohibits calling functions at the same level in the same file.
|
|
4
4
|
|
|
5
|
+
### Options
|
|
6
|
+
|
|
7
|
+
You can register the files to apply the rule (`no-same-level-funcs`) using the `include` and `exclude` options:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
"no-same-level-funcs": ["error", { "include": ["**/*.js"], "exclude": ["**/*.test.js"] }]
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The default is as follows:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"include": ["**/*.{js,ts,jsx,tsx}"],
|
|
18
|
+
"exclude": ["**/*.{spec,test}.{js,ts,jsx,tsx}"]
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
5
22
|
## Rule Details
|
|
6
23
|
|
|
7
24
|
Examples of **incorrect** code for this rule:
|
|
@@ -21,6 +38,14 @@ function func3(...) {
|
|
|
21
38
|
|
|
22
39
|
Examples of **correct** code for this rule:
|
|
23
40
|
|
|
41
|
+
```js
|
|
42
|
+
function func1(...) {
|
|
43
|
+
...
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const func2(...) => { ... }
|
|
47
|
+
```
|
|
48
|
+
|
|
24
49
|
```js
|
|
25
50
|
function func1(...) {
|
|
26
51
|
const func2(...) => { ... };
|
|
@@ -79,6 +79,7 @@ const reportHasProperLevelNumber = (context, options, rootDir, filePath) => {
|
|
|
79
79
|
*/
|
|
80
80
|
return (node, modulePath) => {
|
|
81
81
|
if (!options.useLevelNumber) return;
|
|
82
|
+
if (isNodeModule(rootDir)(modulePath)) return;
|
|
82
83
|
|
|
83
84
|
const report = (messageId) =>
|
|
84
85
|
reportError(context, rootDir, filePath)(node, messageId, modulePath);
|
|
@@ -184,12 +185,15 @@ const reportHasProperLevel = (
|
|
|
184
185
|
|
|
185
186
|
const isNodeModulePath = isNodeModule(rootDir)(modulePath);
|
|
186
187
|
|
|
188
|
+
const moduleLevel = findLevel(modulePath);
|
|
189
|
+
|
|
187
190
|
if (fileLevel === null) {
|
|
188
|
-
if (!isNodeModulePath)
|
|
191
|
+
if (moduleLevel !== null || !isNodeModulePath) {
|
|
192
|
+
report("not-registered:file");
|
|
193
|
+
}
|
|
189
194
|
return FINISHED;
|
|
190
195
|
}
|
|
191
196
|
|
|
192
|
-
const moduleLevel = findLevel(modulePath);
|
|
193
197
|
if (moduleLevel === null) {
|
|
194
198
|
if (!isNodeModulePath) report("not-registered:module");
|
|
195
199
|
return FINISHED;
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
"use strict";
|
|
6
6
|
|
|
7
|
+
const { minimatch } = require("minimatch");
|
|
8
|
+
const path = require("path");
|
|
9
|
+
|
|
7
10
|
//------------------------------------------------------------------------------
|
|
8
11
|
// Rule Definition
|
|
9
12
|
//------------------------------------------------------------------------------
|
|
@@ -13,14 +16,51 @@ module.exports = {
|
|
|
13
16
|
meta: {
|
|
14
17
|
type: "problem",
|
|
15
18
|
fixable: "code",
|
|
16
|
-
schema:
|
|
19
|
+
schema: {
|
|
20
|
+
type: "array",
|
|
21
|
+
items: [
|
|
22
|
+
{
|
|
23
|
+
type: "object",
|
|
24
|
+
properties: {
|
|
25
|
+
exclude: {
|
|
26
|
+
type: "array",
|
|
27
|
+
items: [{ type: "string" }],
|
|
28
|
+
},
|
|
29
|
+
include: {
|
|
30
|
+
type: "array",
|
|
31
|
+
items: [{ type: "string" }],
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
additionalItems: false,
|
|
37
|
+
},
|
|
17
38
|
messages: {
|
|
18
39
|
"no-same-level-funcs": "Disallow calling {{func}} in the same file.",
|
|
19
40
|
},
|
|
20
41
|
},
|
|
21
42
|
|
|
22
43
|
create(context) {
|
|
44
|
+
const options = {
|
|
45
|
+
exclude: ["**/*.{test,spec}.{js,ts,jsx,tsx}"],
|
|
46
|
+
include: ["**/*.{js,ts,jsx,tsx}"],
|
|
47
|
+
...(context.options[0] || {}),
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const fileSource = path.resolve(context.getFilename());
|
|
51
|
+
|
|
52
|
+
const isIncludedFile = options.include.find((pattern) =>
|
|
53
|
+
minimatch(fileSource, pattern)
|
|
54
|
+
);
|
|
55
|
+
|
|
56
|
+
const isExcludedFile =
|
|
57
|
+
!isIncludedFile ||
|
|
58
|
+
options.exclude.find((pattern) => minimatch(fileSource, pattern));
|
|
59
|
+
|
|
60
|
+
if (isExcludedFile) return {};
|
|
61
|
+
|
|
23
62
|
let funcNames;
|
|
63
|
+
|
|
24
64
|
return {
|
|
25
65
|
Program(node) {
|
|
26
66
|
funcNames = node.body.reduce((names, { type, id, declarations }) => {
|
package/package.json
CHANGED
package/scripts/versioning.js
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
const fs = require("fs");
|
|
2
|
+
const { execSync } = require("child_process");
|
|
3
|
+
|
|
4
|
+
const noChange = "__NO_CHANGE__";
|
|
5
|
+
|
|
6
|
+
function exec(command) {
|
|
7
|
+
const output = execSync(command, { encoding: "utf-8" });
|
|
8
|
+
console.log(output);
|
|
9
|
+
}
|
|
2
10
|
|
|
3
11
|
function updatePackageVersion() {
|
|
4
12
|
const githubEventPath = process.env.GITHUB_EVENT_PATH || "";
|
|
5
13
|
const packageJsonPath = "package.json";
|
|
6
14
|
|
|
7
|
-
const version = (() => {
|
|
15
|
+
const { version, targetCommitish } = (() => {
|
|
8
16
|
try {
|
|
9
17
|
const githubEventString = fs.readFileSync(githubEventPath, "utf-8");
|
|
10
18
|
const githubEvent = JSON.parse(githubEventString);
|
|
11
19
|
const tagName = githubEvent.release.tag_name;
|
|
20
|
+
const targetCommitish = githubEvent.release.target_commitish;
|
|
12
21
|
const version = tagName.replace(/^v(.*)/, "$1");
|
|
13
|
-
return version;
|
|
22
|
+
return { version, targetCommitish };
|
|
14
23
|
} catch (error) {
|
|
15
24
|
throw new Error("Error parsing GITHUB_EVENT_PATH:", error);
|
|
16
25
|
}
|
|
@@ -19,6 +28,7 @@ function updatePackageVersion() {
|
|
|
19
28
|
const packageJson = (() => {
|
|
20
29
|
try {
|
|
21
30
|
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
|
31
|
+
if (packageJson.version === version) return noChange;
|
|
22
32
|
packageJson.version = version;
|
|
23
33
|
const updatedPackageJson = JSON.stringify(packageJson, null, 2) + "\n";
|
|
24
34
|
return updatedPackageJson;
|
|
@@ -27,12 +37,24 @@ function updatePackageVersion() {
|
|
|
27
37
|
}
|
|
28
38
|
})();
|
|
29
39
|
|
|
40
|
+
if (packageJson === noChange) return;
|
|
41
|
+
|
|
30
42
|
try {
|
|
31
43
|
fs.writeFileSync(packageJsonPath, packageJson, "utf8");
|
|
32
|
-
console.log(`Successfully updated version to ${version}`);
|
|
33
44
|
} catch (error) {
|
|
34
45
|
throw new Error("Error writing package.json:", error);
|
|
35
46
|
}
|
|
47
|
+
|
|
48
|
+
try {
|
|
49
|
+
exec(`git config --local user.email "action@github.com"`);
|
|
50
|
+
exec(`git config --local user.name "GitHub Action"`);
|
|
51
|
+
exec(`git commit -a -m "Update package version: ${version}"`);
|
|
52
|
+
exec(`git push origin HEAD:${targetCommitish}`);
|
|
53
|
+
} catch (error) {
|
|
54
|
+
throw new Error("Error executing push package.json", error);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
console.log(`Successfully updated version to ${version}`);
|
|
36
58
|
}
|
|
37
59
|
|
|
38
60
|
updatePackageVersion();
|
|
@@ -58,7 +58,7 @@ ruleTester.run("lower-level-imports", rule, {
|
|
|
58
58
|
options: [{ structure, root: "./src", aliases: { "@/": "./src/" } }],
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
code: "import { func } from 'node-module'",
|
|
61
|
+
code: "import { func } from 'other-node-module'",
|
|
62
62
|
filename: "./src/otherLayerA.js",
|
|
63
63
|
options: [{ structure, root: "./src" }],
|
|
64
64
|
},
|
|
@@ -170,6 +170,23 @@ ruleTester.run("lower-level-imports", rule, {
|
|
|
170
170
|
},
|
|
171
171
|
],
|
|
172
172
|
},
|
|
173
|
+
{
|
|
174
|
+
code: "import { func } from 'other-node-module'",
|
|
175
|
+
filename: "./src/1 otherLayerA.js",
|
|
176
|
+
options: [{ structure, root: "./src", useLevelNumber: true }],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
code: "import { func } from 'node-module'",
|
|
180
|
+
filename: "./src/layer2/subLayer1/1 layer.js",
|
|
181
|
+
options: [
|
|
182
|
+
{
|
|
183
|
+
structure,
|
|
184
|
+
root: "./src",
|
|
185
|
+
aliases: { "@/": "./src/" },
|
|
186
|
+
useLevelNumber: true,
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
},
|
|
173
190
|
],
|
|
174
191
|
invalid: [
|
|
175
192
|
{
|
|
@@ -310,5 +327,16 @@ ruleTester.run("lower-level-imports", rule, {
|
|
|
310
327
|
},
|
|
311
328
|
],
|
|
312
329
|
},
|
|
330
|
+
{
|
|
331
|
+
code: "import { func } from 'node-module'",
|
|
332
|
+
filename: "./src/layer3/subLayer1/1 layer.js",
|
|
333
|
+
options: [{ structure, root: "./src", useLevelNumber: true }],
|
|
334
|
+
errors: [
|
|
335
|
+
{
|
|
336
|
+
messageId: "not-lower-level",
|
|
337
|
+
data: { module: "node-module", file: "./layer3/subLayer1/1 layer" },
|
|
338
|
+
},
|
|
339
|
+
],
|
|
340
|
+
},
|
|
313
341
|
],
|
|
314
342
|
});
|
|
@@ -20,26 +20,55 @@ const ruleTester = new RuleTester({
|
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
ruleTester.run("no-same-level-funcs", rule, {
|
|
23
|
-
valid: [
|
|
23
|
+
valid: [
|
|
24
|
+
{
|
|
25
|
+
code: "function func1(){ function func2(){} func2() }",
|
|
26
|
+
filename: "./src/foo.js",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
code: "function func1(){}; function func2(){ func1(); }",
|
|
30
|
+
filename: "./src/foo.test.js",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
code: "function func1(){}; function func2(){ func1(); }",
|
|
34
|
+
filename: "./src/foo.js",
|
|
35
|
+
options: [{ exclude: ["**/foo.js"] }],
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
code: "function func1(){}; function func2(){ func1(); }",
|
|
39
|
+
filename: "./src/foo.js",
|
|
40
|
+
options: [{ include: ["**/*.ts"] }],
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
code: "function func1(){}; function func2(){ func1(); }",
|
|
44
|
+
filename: "./src/foo.js",
|
|
45
|
+
options: [{ include: ["**/src/**/*.*"], exclude: ["**/foo.js"] }],
|
|
46
|
+
},
|
|
47
|
+
],
|
|
24
48
|
invalid: [
|
|
25
49
|
{
|
|
26
50
|
code: "function func1(){}; function func2(){ func1(); }",
|
|
51
|
+
filename: "./src/foo.js",
|
|
27
52
|
errors: [{ messageId: "no-same-level-funcs", data: { func: "func1" } }],
|
|
28
53
|
},
|
|
29
54
|
{
|
|
30
55
|
code: "function func2(){ func1(); }; function func1(){}",
|
|
56
|
+
filename: "./src/foo.js",
|
|
31
57
|
errors: [{ messageId: "no-same-level-funcs", data: { func: "func1" } }],
|
|
32
58
|
},
|
|
33
59
|
{
|
|
34
60
|
code: "const func1 = () => {}; const func2 = () => { func1(); }",
|
|
61
|
+
filename: "./src/foo.js",
|
|
35
62
|
errors: [{ messageId: "no-same-level-funcs", data: { func: "func1" } }],
|
|
36
63
|
},
|
|
37
64
|
{
|
|
38
65
|
code: "const func1 = function(){}; const func2 = function(){ func1(); }",
|
|
66
|
+
filename: "./src/foo.js",
|
|
39
67
|
errors: [{ messageId: "no-same-level-funcs", data: { func: "func1" } }],
|
|
40
68
|
},
|
|
41
69
|
{
|
|
42
70
|
code: "const func1 = function func1(){}; const func2 = function func2(){ func1(); }",
|
|
71
|
+
filename: "./src/foo.js",
|
|
43
72
|
errors: [{ messageId: "no-same-level-funcs", data: { func: "func1" } }],
|
|
44
73
|
},
|
|
45
74
|
],
|