@drskillissue/ganko 0.2.82 → 0.3.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 +3 -3
- package/dist/{chunk-CHVGY25Z.js → chunk-2VRVUMIE.js} +22824 -36422
- package/dist/chunk-2VRVUMIE.js.map +1 -0
- package/dist/{chunk-NFDA6LAI.js → chunk-TNKZGWOR.js} +91 -79
- package/dist/chunk-TNKZGWOR.js.map +1 -0
- package/dist/eslint-plugin.cjs +2517 -16703
- package/dist/eslint-plugin.cjs.map +1 -1
- package/dist/eslint-plugin.d.cts +1 -13
- package/dist/eslint-plugin.d.ts +1 -13
- package/dist/eslint-plugin.js +14 -130
- package/dist/eslint-plugin.js.map +1 -1
- package/dist/index.cjs +13463 -14055
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1243 -835
- package/dist/index.d.ts +1243 -835
- package/dist/index.js +13412 -305
- package/dist/index.js.map +1 -1
- package/dist/rules-manifest.cjs +90 -78
- package/dist/rules-manifest.cjs.map +1 -1
- package/dist/rules-manifest.d.cts +1 -1
- package/dist/rules-manifest.d.ts +1 -1
- package/dist/rules-manifest.js +1 -1
- package/package.json +5 -2
- package/dist/chunk-CHVGY25Z.js.map +0 -1
- package/dist/chunk-NFDA6LAI.js.map +0 -1
|
@@ -10,7 +10,7 @@ import { RuleSeverityOverride } from '@drskillissue/ganko-shared';
|
|
|
10
10
|
/** Rule category for grouping in configuration UIs and documentation. */
|
|
11
11
|
type RuleCategory = "correctness" | "css-a11y" | "css-animation" | "css-cascade" | "css-jsx" | "css-layout" | "css-property" | "css-selector" | "css-structure" | "jsx" | "performance" | "reactivity" | "solid";
|
|
12
12
|
/** Plugin that owns the rule. */
|
|
13
|
-
type RulePlugin = "
|
|
13
|
+
type RulePlugin = "compilation" | "solid";
|
|
14
14
|
/** Static metadata for a single lint rule. */
|
|
15
15
|
interface RuleEntry {
|
|
16
16
|
readonly id: string;
|
package/dist/rules-manifest.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { RuleSeverityOverride } from '@drskillissue/ganko-shared';
|
|
|
10
10
|
/** Rule category for grouping in configuration UIs and documentation. */
|
|
11
11
|
type RuleCategory = "correctness" | "css-a11y" | "css-animation" | "css-cascade" | "css-jsx" | "css-layout" | "css-property" | "css-selector" | "css-structure" | "jsx" | "performance" | "reactivity" | "solid";
|
|
12
12
|
/** Plugin that owns the rule. */
|
|
13
|
-
type RulePlugin = "
|
|
13
|
+
type RulePlugin = "compilation" | "solid";
|
|
14
14
|
/** Static metadata for a single lint rule. */
|
|
15
15
|
interface RuleEntry {
|
|
16
16
|
readonly id: string;
|
package/dist/rules-manifest.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drskillissue/ganko",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Static analysis SDK for Solid.js — graphs, rules, ESLint adapter",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,7 +39,10 @@
|
|
|
39
39
|
"README.md",
|
|
40
40
|
"LICENSE"
|
|
41
41
|
],
|
|
42
|
-
"sideEffects":
|
|
42
|
+
"sideEffects": [
|
|
43
|
+
"dist/chunk-*.js",
|
|
44
|
+
"dist/chunk-*.mjs"
|
|
45
|
+
],
|
|
43
46
|
"keywords": [
|
|
44
47
|
"solid",
|
|
45
48
|
"solidjs",
|