@goodbones/oxlint 0.1.0-beta.6 → 0.1.0-beta.7
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/build/dts/exports-rule.d.ts.map +1 -1
- package/build/dts/imports-rule.d.ts.map +1 -1
- package/build/dts/members-rule.d.ts.map +1 -1
- package/build/dts/oxlint-api.d.ts +4 -33
- package/build/dts/oxlint-api.d.ts.map +1 -1
- package/build/dts/surface-rule.d.ts.map +1 -1
- package/build/esm/exports-rule.js +15 -71
- package/build/esm/exports-rule.js.map +1 -1
- package/build/esm/imports-rule.js +14 -26
- package/build/esm/imports-rule.js.map +1 -1
- package/build/esm/members-rule.js +10 -112
- package/build/esm/members-rule.js.map +1 -1
- package/build/esm/oxlint-api.js +22 -20
- package/build/esm/oxlint-api.js.map +1 -1
- package/build/esm/surface-rule.js +11 -127
- package/build/esm/surface-rule.js.map +1 -1
- package/package.json +3 -3
- package/src/exports-rule.ts +19 -106
- package/src/imports-rule.ts +16 -35
- package/src/members-rule.ts +11 -165
- package/src/oxlint-api.ts +31 -47
- package/src/surface-rule.ts +15 -189
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports-rule.d.ts","sourceRoot":"","sources":["../../src/exports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"exports-rule.d.ts","sourceRoot":"","sources":["../../src/exports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,YAAY,EAElB,MAAM,iBAAiB,CAAC;AAIzB,OAAO,EAIL,KAAK,UAAU,EAIhB,MAAM,iBAAiB,CAAC;AAYzB,eAAO,MAAM,eAAe,WAAY,YAAY,KAAG,UA6ErD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imports-rule.d.ts","sourceRoot":"","sources":["../../src/imports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,YAAY,EAGlB,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"imports-rule.d.ts","sourceRoot":"","sources":["../../src/imports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,YAAY,EAGlB,MAAM,iBAAiB,CAAC;AAIzB,OAAO,EAGL,KAAK,UAAU,EAIhB,MAAM,iBAAiB,CAAC;AAOzB,eAAO,MAAM,eAAe,WAAY,YAAY,KAAG,UAoDrD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"members-rule.d.ts","sourceRoot":"","sources":["../../src/members-rule.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"members-rule.d.ts","sourceRoot":"","sources":["../../src/members-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,YAAY,EAElB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAGL,KAAK,UAAU,EAIhB,MAAM,iBAAiB,CAAC;AAEzB,eAAO,MAAM,eAAe,WAAY,YAAY,KAAG,UAiCrD,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type ReadFacts, type SyntaxNode } from "@goodbones/typescript";
|
|
1
2
|
import type { RuleTester } from "oxlint/plugins-dev";
|
|
2
3
|
export type OxlintRule = Parameters<RuleTester["run"]>[1];
|
|
3
4
|
export type RuleContext = Parameters<Extract<OxlintRule, {
|
|
@@ -8,39 +9,9 @@ export type ReportableNode = Extract<Diagnostic, {
|
|
|
8
9
|
node: unknown;
|
|
9
10
|
}>["node"];
|
|
10
11
|
export type Fixer = Parameters<NonNullable<Diagnostic["fix"]>>[0];
|
|
11
|
-
export type
|
|
12
|
-
readonly source?: {
|
|
13
|
-
readonly value?: unknown;
|
|
14
|
-
} | null;
|
|
15
|
-
};
|
|
12
|
+
export type Program = RuleContext["sourceCode"]["ast"];
|
|
16
13
|
export declare const toRepoRelative: (repoRoot: string, filename: string) => string;
|
|
17
|
-
export declare const
|
|
18
|
-
export
|
|
19
|
-
readonly callee?: {
|
|
20
|
-
readonly type: string;
|
|
21
|
-
readonly name?: unknown;
|
|
22
|
-
} | null;
|
|
23
|
-
readonly arguments?: ReadonlyArray<{
|
|
24
|
-
readonly type: string;
|
|
25
|
-
readonly value?: unknown;
|
|
26
|
-
}> | null;
|
|
27
|
-
};
|
|
28
|
-
export type ImportExpressionNode = ReportableNode & {
|
|
29
|
-
readonly source?: {
|
|
30
|
-
readonly type?: string;
|
|
31
|
-
readonly value?: unknown;
|
|
32
|
-
} | null;
|
|
33
|
-
};
|
|
34
|
-
export type ImportEqualsNode = ReportableNode & {
|
|
35
|
-
readonly moduleReference?: {
|
|
36
|
-
readonly type: string;
|
|
37
|
-
readonly expression?: {
|
|
38
|
-
readonly value?: unknown;
|
|
39
|
-
} | null;
|
|
40
|
-
} | null;
|
|
41
|
-
};
|
|
42
|
-
export declare const requireSpecifierOf: (node: CallNode) => string | null;
|
|
43
|
-
export declare const importExpressionSpecifierOf: (node: ImportExpressionNode) => string | null;
|
|
44
|
-
export declare const importEqualsSpecifierOf: (node: ImportEqualsNode) => string | null;
|
|
14
|
+
export declare const at: (node: SyntaxNode) => ReportableNode;
|
|
15
|
+
export declare const factsOfProgram: (file: string, program: Program) => ReadFacts;
|
|
45
16
|
export {};
|
|
46
17
|
//# sourceMappingURL=oxlint-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oxlint-api.d.ts","sourceRoot":"","sources":["../../src/oxlint-api.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAKrD,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1D,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,CAAC,UAAU,EAAE;IAAE,UAAU,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAEpG,KAAK,UAAU,GAAG,UAAU,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvD,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,UAAU,EAAE;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC,MAAM,CAAC,CAAC;AAC5E,MAAM,MAAM,KAAK,GAAG,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"oxlint-api.d.ts","sourceRoot":"","sources":["../../src/oxlint-api.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,SAAS,EAEd,KAAK,UAAU,EAChB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAKrD,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1D,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,CAAC,UAAU,EAAE;IAAE,UAAU,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAEpG,KAAK,UAAU,GAAG,UAAU,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACvD,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,UAAU,EAAE;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC,MAAM,CAAC,CAAC;AAC5E,MAAM,MAAM,KAAK,GAAG,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAIlE,MAAM,MAAM,OAAO,GAAG,WAAW,CAAC,YAAY,CAAC,CAAC,KAAK,CAAC,CAAC;AAEvD,eAAO,MAAM,cAAc,aAAc,MAAM,YAAY,MAAM,KAAG,MACP,CAAC;AAI9D,eAAO,MAAM,EAAE,SAAU,UAAU,KAAG,cAEpC,CAAC;AAOH,eAAO,MAAM,cAAc,SAAU,MAAM,WAAW,OAAO,KAAG,SAW/D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"surface-rule.d.ts","sourceRoot":"","sources":["../../src/surface-rule.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"surface-rule.d.ts","sourceRoot":"","sources":["../../src/surface-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,YAAY,EAElB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,EAGL,KAAK,UAAU,EAIhB,MAAM,iBAAiB,CAAC;AAEzB,eAAO,MAAM,eAAe,WAAY,YAAY,KAAG,UA4CrD,CAAC"}
|
|
@@ -1,49 +1,6 @@
|
|
|
1
1
|
import { evaluateSelectedBindings, exportRulesSelecting, formatMessage, } from "@goodbones/core";
|
|
2
2
|
import * as Result from "effect/Result";
|
|
3
|
-
import {
|
|
4
|
-
const nameOf = (node) => {
|
|
5
|
-
if (node === null || node === undefined)
|
|
6
|
-
return null;
|
|
7
|
-
if (typeof node.name === "string")
|
|
8
|
-
return node.name;
|
|
9
|
-
// `import { "a-b" as ab }` — a string-literal export name.
|
|
10
|
-
return typeof node.value === "string" ? node.value : null;
|
|
11
|
-
};
|
|
12
|
-
// The whole module, as one binding. `export * from "m"`, `export * as ns from
|
|
13
|
-
// "m"`, `import x = require("m")`, `import("m")` and `require("m")` all carry
|
|
14
|
-
// every export of `m` at once, exactly as `import * as ns` does — and are the
|
|
15
|
-
// same way around a rule about a name. A side-effect import carries nothing.
|
|
16
|
-
const wholeModule = (node, local = "") => ({
|
|
17
|
-
symbol: "*",
|
|
18
|
-
kind: "namespace",
|
|
19
|
-
node,
|
|
20
|
-
local,
|
|
21
|
-
});
|
|
22
|
-
const boundOf = (specifier) => {
|
|
23
|
-
const local = nameOf(specifier.local) ?? "";
|
|
24
|
-
switch (specifier.type) {
|
|
25
|
-
case "ImportSpecifier": {
|
|
26
|
-
const symbol = nameOf(specifier.imported);
|
|
27
|
-
return symbol === null ? null : { symbol, kind: "named", node: specifier, local };
|
|
28
|
-
}
|
|
29
|
-
case "ImportDefaultSpecifier":
|
|
30
|
-
return { symbol: "default", kind: "default", node: specifier, local };
|
|
31
|
-
case "ImportNamespaceSpecifier":
|
|
32
|
-
return { symbol: "*", kind: "namespace", node: specifier, local };
|
|
33
|
-
// `export { a } from "…"` — `local` is the name in the source module.
|
|
34
|
-
case "ExportSpecifier": {
|
|
35
|
-
const symbol = nameOf(specifier.local);
|
|
36
|
-
return symbol === null ? null : { symbol, kind: "named", node: specifier, local: symbol };
|
|
37
|
-
}
|
|
38
|
-
default:
|
|
39
|
-
return null;
|
|
40
|
-
}
|
|
41
|
-
};
|
|
42
|
-
const specifierOf = (node) => {
|
|
43
|
-
const value = node.source?.value;
|
|
44
|
-
return typeof value === "string" ? value : null;
|
|
45
|
-
};
|
|
46
|
-
const boundSpecifiers = (node) => (node.specifiers ?? []).map(boundOf).filter((one) => one !== null);
|
|
3
|
+
import { at, factsOfProgram, toRepoRelative, } from "./oxlint-api.js";
|
|
47
4
|
// `import { A, B as C } from "pkg"` becomes `import * as A from "pkg/A"` and
|
|
48
5
|
// `import * as C from "pkg/B"`. Only whole-declaration rewrites are offered: a
|
|
49
6
|
// declaration mixing restricted named imports with a default or namespace one
|
|
@@ -64,15 +21,16 @@ export const makeExportsRule = (policy) => ({
|
|
|
64
21
|
createOnce(context) {
|
|
65
22
|
let importer = "";
|
|
66
23
|
let selected = [];
|
|
67
|
-
// `
|
|
68
|
-
//
|
|
69
|
-
//
|
|
70
|
-
const check = (
|
|
71
|
-
|
|
24
|
+
// Only an `import` declaration can be rewritten into subpath namespace
|
|
25
|
+
// imports. `export *` and the whole-module forms are reported and left
|
|
26
|
+
// for the author.
|
|
27
|
+
const check = (edge) => {
|
|
28
|
+
const { bindings: bound, node, specifier } = edge;
|
|
29
|
+
if (bound.length === 0)
|
|
72
30
|
return;
|
|
73
31
|
const outcome = evaluateSelectedBindings(selected, policy.resolver, {
|
|
74
32
|
importer,
|
|
75
|
-
specifier
|
|
33
|
+
specifier,
|
|
76
34
|
bindings: bound,
|
|
77
35
|
});
|
|
78
36
|
if (Result.isFailure(outcome)) {
|
|
@@ -87,20 +45,20 @@ export const makeExportsRule = (policy) => ({
|
|
|
87
45
|
// The rewrite is `import * as X from "pkg/<name>"`, which only means
|
|
88
46
|
// something for a named binding — a namespace one has no name to put
|
|
89
47
|
// in the subpath.
|
|
90
|
-
const rewritable =
|
|
48
|
+
const rewritable = edge.form === "import" &&
|
|
91
49
|
rule.fix === "subpath-namespace-import" &&
|
|
92
50
|
offending.length === bound.length &&
|
|
93
51
|
offending.every((one) => one.kind === "named");
|
|
94
52
|
if (rewritable) {
|
|
95
53
|
context.report({
|
|
96
|
-
node,
|
|
54
|
+
node: at(node),
|
|
97
55
|
message: formatMessage(violation),
|
|
98
|
-
fix: (fixer) => fixer.replaceText(node, subpathNamespaceImport(
|
|
56
|
+
fix: (fixer) => fixer.replaceText(at(node), subpathNamespaceImport(specifier, offending)),
|
|
99
57
|
});
|
|
100
58
|
continue;
|
|
101
59
|
}
|
|
102
60
|
context.report({
|
|
103
|
-
node: offending[0]?.node ?? node,
|
|
61
|
+
node: at(offending[0]?.node ?? node),
|
|
104
62
|
message: formatMessage(violation),
|
|
105
63
|
});
|
|
106
64
|
}
|
|
@@ -113,23 +71,9 @@ export const makeExportsRule = (policy) => ({
|
|
|
113
71
|
selected = exportRulesSelecting(policy.exportRules, importer);
|
|
114
72
|
return selected.length > 0;
|
|
115
73
|
},
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
ExportNamedDeclaration(node) {
|
|
120
|
-
check(node, specifierOf(node), boundSpecifiers(node), false);
|
|
121
|
-
},
|
|
122
|
-
ExportAllDeclaration(node) {
|
|
123
|
-
check(node, specifierOf(node), [wholeModule(node, nameOf(node.exported) ?? "")], false);
|
|
124
|
-
},
|
|
125
|
-
ImportExpression(node) {
|
|
126
|
-
check(node, importExpressionSpecifierOf(node), [wholeModule(node)], false);
|
|
127
|
-
},
|
|
128
|
-
CallExpression(node) {
|
|
129
|
-
check(node, requireSpecifierOf(node), [wholeModule(node)], false);
|
|
130
|
-
},
|
|
131
|
-
TSImportEqualsDeclaration(node) {
|
|
132
|
-
check(node, importEqualsSpecifierOf(node), [wholeModule(node)], false);
|
|
74
|
+
Program(node) {
|
|
75
|
+
for (const edge of factsOfProgram(importer, node).edges)
|
|
76
|
+
check(edge);
|
|
133
77
|
},
|
|
134
78
|
};
|
|
135
79
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports-rule.js","sourceRoot":"","sources":["../../src/exports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"exports-rule.js","sourceRoot":"","sources":["../../src/exports-rule.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { evaluateSelectedEdge, formatMessage, rulesSelecting, } from "@goodbones/core";
|
|
2
2
|
import * as Result from "effect/Result";
|
|
3
|
-
import {
|
|
3
|
+
import { at, factsOfProgram, toRepoRelative, } from "./oxlint-api.js";
|
|
4
4
|
const unresolvedMessage = (specifier, detail) => `[unresolved-import] "${specifier}" could not be resolved, so every import rule about it ` +
|
|
5
5
|
`enforces nothing. Fix the resolve scope in the architecture config, or list the specifier ` +
|
|
6
6
|
`in resolve.ignoreUnresolved. (${detail})`;
|
|
@@ -18,31 +18,29 @@ export const makeImportsRule = (policy) => ({
|
|
|
18
18
|
createOnce(context) {
|
|
19
19
|
let importer = "";
|
|
20
20
|
let selected = [];
|
|
21
|
-
const check = (
|
|
22
|
-
|
|
23
|
-
return;
|
|
21
|
+
const check = (edge) => {
|
|
22
|
+
const { specifier } = edge;
|
|
24
23
|
const outcome = evaluateSelectedEdge(selected, policy.resolver, { importer, specifier });
|
|
25
24
|
if (Result.isFailure(outcome)) {
|
|
26
25
|
if (policy.config.resolve.unresolved === "off")
|
|
27
26
|
return;
|
|
28
27
|
if (policy.ignoreUnresolved.some((pattern) => pattern.test(specifier)))
|
|
29
28
|
return;
|
|
30
|
-
context.report({
|
|
29
|
+
context.report({
|
|
30
|
+
node: at(edge.node),
|
|
31
|
+
message: unresolvedMessage(specifier, outcome.failure.detail),
|
|
32
|
+
});
|
|
31
33
|
return;
|
|
32
34
|
}
|
|
33
35
|
for (const violation of outcome.success) {
|
|
34
36
|
if (policy.baseline.isBaselined(violation))
|
|
35
37
|
continue;
|
|
36
|
-
context.report({ node, message: formatMessage(violation) });
|
|
38
|
+
context.report({ node: at(edge.node), message: formatMessage(violation) });
|
|
37
39
|
}
|
|
38
40
|
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// Every form that names a module is an edge. The CLI adapter reads the same
|
|
43
|
-
// five out of TypeScript's tree, and the parity suite holds the two to it: a
|
|
44
|
-
// `require` the plugin skipped would be a rule that enforces nothing under
|
|
45
|
-
// `oxlint` while failing under `architecture check`.
|
|
41
|
+
// Every form that names a module is an edge, and the pack's reader is
|
|
42
|
+
// what says which forms those are — the same reader the CLI reads a file
|
|
43
|
+
// through, so a form one host sees the other sees too.
|
|
46
44
|
return {
|
|
47
45
|
before() {
|
|
48
46
|
importer = toRepoRelative(policy.repoRoot, context.filename);
|
|
@@ -51,19 +49,9 @@ export const makeImportsRule = (policy) => ({
|
|
|
51
49
|
selected = rulesSelecting(policy.importRules, importer);
|
|
52
50
|
return selected.length > 0;
|
|
53
51
|
},
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
// `import("m")` with a literal argument. A computed one is not a fact a
|
|
58
|
-
// static policy can speak about, in either adapter.
|
|
59
|
-
ImportExpression(node) {
|
|
60
|
-
check(node, importExpressionSpecifierOf(node));
|
|
61
|
-
},
|
|
62
|
-
CallExpression(node) {
|
|
63
|
-
check(node, requireSpecifierOf(node));
|
|
64
|
-
},
|
|
65
|
-
TSImportEqualsDeclaration(node) {
|
|
66
|
-
check(node, importEqualsSpecifierOf(node));
|
|
52
|
+
Program(node) {
|
|
53
|
+
for (const edge of factsOfProgram(importer, node).edges)
|
|
54
|
+
check(edge);
|
|
67
55
|
},
|
|
68
56
|
};
|
|
69
57
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imports-rule.js","sourceRoot":"","sources":["../../src/imports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,aAAa,EAEb,cAAc,GAEf,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"imports-rule.js","sourceRoot":"","sources":["../../src/imports-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EACpB,aAAa,EAEb,cAAc,GAEf,MAAM,iBAAiB,CAAC;AAEzB,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EACL,EAAE,EACF,cAAc,EAId,cAAc,GACf,MAAM,iBAAiB,CAAC;AAEzB,MAAM,iBAAiB,GAAG,CAAC,SAAiB,EAAE,MAAc,EAAU,EAAE,CACtE,wBAAwB,SAAS,yDAAyD;IAC1F,4FAA4F;IAC5F,iCAAiC,MAAM,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,MAAoB,EAAc,EAAE,CAAC,CAAC;IACpE,IAAI,EAAE;QACJ,IAAI,EAAE,SAAkB;QACxB,IAAI,EAAE;YACJ,WAAW,EACT,6FAA6F;SAChG;QACD,MAAM,EAAE,EAAE;KACX;IAED,yEAAyE;IACzE,4EAA4E;IAC5E,4EAA4E;IAC5E,UAAU,CAAC,OAAoB;QAC7B,IAAI,QAAQ,GAAG,EAAE,CAAC;QAClB,IAAI,QAAQ,GAAgC,EAAE,CAAC;QAE/C,MAAM,KAAK,GAAG,CAAC,IAAc,EAAQ,EAAE;YACrC,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,CAAC;YAC3B,MAAM,OAAO,GAAG,oBAAoB,CAAC,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,CAAC;YAEzF,IAAI,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC;gBAC9B,IAAI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,KAAK,KAAK;oBAAE,OAAO;gBACvD,IAAI,MAAM,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;oBAAE,OAAO;gBAC/E,OAAO,CAAC,MAAM,CAAC;oBACb,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC;oBACnB,OAAO,EAAE,iBAAiB,CAAC,SAAS,EAAE,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC;iBAC9D,CAAC,CAAC;gBACH,OAAO;YACT,CAAC;YAED,KAAK,MAAM,SAAS,IAAI,OAAO,CAAC,OAAO,EAAE,CAAC;gBACxC,IAAI,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,SAAS,CAAC;oBAAE,SAAS;gBACrD,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;YAC7E,CAAC;QACH,CAAC,CAAC;QAEF,sEAAsE;QACtE,yEAAyE;QACzE,uDAAuD;QACvD,OAAO;YACL,MAAM;gBACJ,QAAQ,GAAG,cAAc,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAC7D,IAAI,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC;oBAAE,OAAO,KAAK,CAAC;gBAC5C,QAAQ,GAAG,cAAc,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;gBACxD,OAAO,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YAC7B,CAAC;YACD,OAAO,CAAC,IAAa;gBACnB,KAAK,MAAM,IAAI,IAAI,cAAc,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,KAAK;oBAAE,KAAK,CAAC,IAAI,CAAC,CAAC;YACvE,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC"}
|
|
@@ -1,59 +1,5 @@
|
|
|
1
1
|
import { evaluateMemberSite, formatMessage, memberRulesSelecting, } from "@goodbones/core";
|
|
2
|
-
import { toRepoRelative, } from "./oxlint-api.js";
|
|
3
|
-
const isMemberList = (value) => Array.isArray(value);
|
|
4
|
-
// The member shapes that carry a name a vocabulary rule can speak about: a
|
|
5
|
-
// property or method signature in a type, a property, method or accessor in a
|
|
6
|
-
// class. Mirrors the CLI's `isNamedMember`.
|
|
7
|
-
const DECLARED_MEMBER_TYPES = new Set([
|
|
8
|
-
"TSPropertySignature",
|
|
9
|
-
"TSMethodSignature",
|
|
10
|
-
"PropertyDefinition",
|
|
11
|
-
"MethodDefinition",
|
|
12
|
-
"TSAbstractPropertyDefinition",
|
|
13
|
-
"TSAbstractMethodDefinition",
|
|
14
|
-
]);
|
|
15
|
-
// The type literals written in a type, through intersections, unions and
|
|
16
|
-
// parentheses. A reference is not followed: its members are declared where it
|
|
17
|
-
// is, and reported there under its own name. Mirrors the CLI's `literalsOf`.
|
|
18
|
-
const literalsOf = (node) => {
|
|
19
|
-
if (node === null || node === undefined)
|
|
20
|
-
return [];
|
|
21
|
-
switch (node.type) {
|
|
22
|
-
case "TSTypeLiteral":
|
|
23
|
-
return [node];
|
|
24
|
-
case "TSIntersectionType":
|
|
25
|
-
case "TSUnionType":
|
|
26
|
-
return (node.types ?? []).flatMap(literalsOf);
|
|
27
|
-
case "TSParenthesizedType":
|
|
28
|
-
return literalsOf(node.typeAnnotation);
|
|
29
|
-
default:
|
|
30
|
-
return [];
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
const nameOf = (node) => {
|
|
34
|
-
if (node === null || node === undefined)
|
|
35
|
-
return null;
|
|
36
|
-
if (typeof node.name === "string")
|
|
37
|
-
return node.name;
|
|
38
|
-
return typeof node.value === "string" ? node.value : null;
|
|
39
|
-
};
|
|
40
|
-
// The name a call is made by: `f()` and `x.f()` are both `f`. `x[f]()` and
|
|
41
|
-
// `x["f"]()` are not — a computed property is not a name a vocabulary rule can
|
|
42
|
-
// speak about — and neither is a private `x.#f()`. The CLI reads the same
|
|
43
|
-
// three cases out of TypeScript's tree; the parity suite keeps them agreeing.
|
|
44
|
-
const calleeName = (node) => {
|
|
45
|
-
const callee = node.callee;
|
|
46
|
-
if (callee === null || callee === undefined)
|
|
47
|
-
return null;
|
|
48
|
-
if (callee.type === "Identifier" && typeof callee.name === "string")
|
|
49
|
-
return callee.name;
|
|
50
|
-
if (callee.type !== "MemberExpression" || callee.computed === true)
|
|
51
|
-
return null;
|
|
52
|
-
const property = callee.property;
|
|
53
|
-
if (property?.type !== "Identifier")
|
|
54
|
-
return null;
|
|
55
|
-
return nameOf(property);
|
|
56
|
-
};
|
|
2
|
+
import { at, factsOfProgram, toRepoRelative, } from "./oxlint-api.js";
|
|
57
3
|
export const makeMembersRule = (policy) => ({
|
|
58
4
|
meta: {
|
|
59
5
|
type: "problem",
|
|
@@ -65,36 +11,8 @@ export const makeMembersRule = (policy) => ({
|
|
|
65
11
|
createOnce(context) {
|
|
66
12
|
let file = "";
|
|
67
13
|
let selected = [];
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
file,
|
|
71
|
-
subject: declaration === undefined ? "calls" : "members",
|
|
72
|
-
name,
|
|
73
|
-
...(declaration === undefined
|
|
74
|
-
? {}
|
|
75
|
-
: { in: declaration.name, declares: declaration.declares }),
|
|
76
|
-
});
|
|
77
|
-
for (const violation of violations) {
|
|
78
|
-
if (policy.baseline.isBaselined(violation))
|
|
79
|
-
continue;
|
|
80
|
-
context.report({ node, message: formatMessage(violation) });
|
|
81
|
-
}
|
|
82
|
-
};
|
|
83
|
-
// The members written in a declaration, under that declaration's name and
|
|
84
|
-
// kind. A computed key is not a name a vocabulary rule can speak about;
|
|
85
|
-
// neither is a private `#name`, an index, call or construct signature, or
|
|
86
|
-
// a constructor.
|
|
87
|
-
const declared = (declaration, declares, members) => {
|
|
88
|
-
for (const member of members) {
|
|
89
|
-
if (member.computed === true || !DECLARED_MEMBER_TYPES.has(member.type))
|
|
90
|
-
continue;
|
|
91
|
-
if (member.key?.type === "PrivateIdentifier" || member.kind === "constructor")
|
|
92
|
-
continue;
|
|
93
|
-
const name = nameOf(member.key);
|
|
94
|
-
if (name !== null)
|
|
95
|
-
report(member.key ?? member, name, { name: declaration, declares });
|
|
96
|
-
}
|
|
97
|
-
};
|
|
14
|
+
// A declared member is reported at its key, a call at the call — the nodes
|
|
15
|
+
// the pack's reader hands back with each site.
|
|
98
16
|
return {
|
|
99
17
|
before() {
|
|
100
18
|
file = toRepoRelative(policy.repoRoot, context.filename);
|
|
@@ -103,35 +21,15 @@ export const makeMembersRule = (policy) => ({
|
|
|
103
21
|
selected = memberRulesSelecting(policy.memberRules, file);
|
|
104
22
|
return selected.length > 0;
|
|
105
23
|
},
|
|
106
|
-
|
|
107
|
-
const
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
24
|
+
Program(node) {
|
|
25
|
+
for (const site of factsOfProgram(file, node).memberSites) {
|
|
26
|
+
for (const violation of evaluateMemberSite(selected, site)) {
|
|
27
|
+
if (policy.baseline.isBaselined(violation))
|
|
28
|
+
continue;
|
|
29
|
+
context.report({ node: at(site.node), message: formatMessage(violation) });
|
|
30
|
+
}
|
|
112
31
|
}
|
|
113
32
|
},
|
|
114
|
-
TSInterfaceDeclaration(node) {
|
|
115
|
-
const declaration = nameOf(node.id);
|
|
116
|
-
const members = node.body?.body;
|
|
117
|
-
if (declaration === null || !isMemberList(members))
|
|
118
|
-
return;
|
|
119
|
-
declared(declaration, "interface", members);
|
|
120
|
-
},
|
|
121
|
-
// A named class only, as the CLI reads it: an anonymous default class has
|
|
122
|
-
// no name for `in`, and a class expression is a value.
|
|
123
|
-
ClassDeclaration(node) {
|
|
124
|
-
const declaration = nameOf(node.id);
|
|
125
|
-
const members = node.body?.body;
|
|
126
|
-
if (declaration === null || !isMemberList(members))
|
|
127
|
-
return;
|
|
128
|
-
declared(declaration, "class", members);
|
|
129
|
-
},
|
|
130
|
-
CallExpression(node) {
|
|
131
|
-
const name = calleeName(node);
|
|
132
|
-
if (name !== null)
|
|
133
|
-
report(node, name);
|
|
134
|
-
},
|
|
135
33
|
};
|
|
136
34
|
},
|
|
137
35
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"members-rule.js","sourceRoot":"","sources":["../../src/members-rule.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"members-rule.js","sourceRoot":"","sources":["../../src/members-rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,kBAAkB,EAClB,aAAa,EAEb,oBAAoB,GACrB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EACL,EAAE,EACF,cAAc,EAId,cAAc,GACf,MAAM,iBAAiB,CAAC;AAEzB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,MAAoB,EAAc,EAAE,CAAC,CAAC;IACpE,IAAI,EAAE;QACJ,IAAI,EAAE,SAAkB;QACxB,IAAI,EAAE;YACJ,WAAW,EACT,6FAA6F;SAChG;QACD,MAAM,EAAE,EAAE;KACX;IAED,UAAU,CAAC,OAAoB;QAC7B,IAAI,IAAI,GAAG,EAAE,CAAC;QACd,IAAI,QAAQ,GAAsC,EAAE,CAAC;QAErD,2EAA2E;QAC3E,+CAA+C;QAC/C,OAAO;YACL,MAAM;gBACJ,IAAI,GAAG,cAAc,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC;gBACzD,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;oBAAE,OAAO,KAAK,CAAC;gBACxC,QAAQ,GAAG,oBAAoB,CAAC,MAAM,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;gBAC1D,OAAO,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YAC7B,CAAC;YACD,OAAO,CAAC,IAAa;gBACnB,KAAK,MAAM,IAAI,IAAI,cAAc,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC;oBAC1D,KAAK,MAAM,SAAS,IAAI,kBAAkB,CAAC,QAAQ,EAAE,IAAI,CAAC,EAAE,CAAC;wBAC3D,IAAI,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,SAAS,CAAC;4BAAE,SAAS;wBACrD,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;oBAC7E,CAAC;gBACH,CAAC;YACH,CAAC;SACF,CAAC;IACJ,CAAC;CACF,CAAC,CAAC"}
|
package/build/esm/oxlint-api.js
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
import * as path from "node:path";
|
|
2
|
+
import { readProgram, } from "@goodbones/typescript";
|
|
2
3
|
export const toRepoRelative = (repoRoot, filename) => path.relative(repoRoot, filename).replaceAll(path.sep, "/");
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
const
|
|
22
|
-
|
|
4
|
+
// A diagnostic is placed by the node's range, which every node of oxlint's
|
|
5
|
+
// tree carries; a node from another parse carries `start` and `end`.
|
|
6
|
+
export const at = (node) => ({
|
|
7
|
+
range: node.range ?? [node.start, node.end],
|
|
8
|
+
});
|
|
9
|
+
// The facts of one file, read once and shared by every rule that runs on it:
|
|
10
|
+
// oxlint deserialises a file's tree once and hands the same `Program` to each
|
|
11
|
+
// rule, so the tree is the key.
|
|
12
|
+
const read = new WeakMap();
|
|
13
|
+
export const factsOfProgram = (file, program) => {
|
|
14
|
+
const found = read.get(program);
|
|
15
|
+
if (found !== undefined)
|
|
16
|
+
return found;
|
|
17
|
+
// oxlint's node types are `@oxc-project/types`' with `parent` required on
|
|
18
|
+
// every node — the same tree, generated from the same source. Each node
|
|
19
|
+
// type assigns on its own; the compiler gives up relating the two
|
|
20
|
+
// ~190-member recursive unions as wholes, so the boundary is asserted once,
|
|
21
|
+
// here. The parity suite is what proves the trees are one.
|
|
22
|
+
const facts = readProgram(file, program);
|
|
23
|
+
read.set(program, facts);
|
|
24
|
+
return facts;
|
|
23
25
|
};
|
|
24
26
|
//# sourceMappingURL=oxlint-api.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oxlint-api.js","sourceRoot":"","sources":["../../src/oxlint-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"oxlint-api.js","sourceRoot":"","sources":["../../src/oxlint-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,OAAO,EAGL,WAAW,GAEZ,MAAM,uBAAuB,CAAC;AAiB/B,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,QAAgB,EAAE,QAAgB,EAAU,EAAE,CAC3E,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAE9D,2EAA2E;AAC3E,qEAAqE;AACrE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAgB,EAAkB,EAAE,CAAC,CAAC;IACvD,KAAK,EAAE,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC;CAC5C,CAAC,CAAC;AAEH,6EAA6E;AAC7E,8EAA8E;AAC9E,gCAAgC;AAChC,MAAM,IAAI,GAAG,IAAI,OAAO,EAAsB,CAAC;AAE/C,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,IAAY,EAAE,OAAgB,EAAa,EAAE;IAC1E,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,KAAK,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtC,0EAA0E;IAC1E,wEAAwE;IACxE,kEAAkE;IAClE,4EAA4E;IAC5E,2DAA2D;IAC3D,MAAM,KAAK,GAAG,WAAW,CAAC,IAAI,EAAE,OAAsB,CAAC,CAAC;IACxD,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IACzB,OAAO,KAAK,CAAC;AACf,CAAC,CAAC"}
|