@foldkit/oxlint-plugin 0.5.0 → 0.6.0-canary.85e5fda4e854
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/all.json +25 -3
- package/dist/index.js +1838 -1028
- package/package.json +2 -2
- package/recommended.json +25 -3
package/all.json
CHANGED
|
@@ -13,16 +13,17 @@
|
|
|
13
13
|
"foldkit/got-wrapper-carries-only-routing": "error",
|
|
14
14
|
"foldkit/keyed-required-for-mapped-rows": "error",
|
|
15
15
|
"foldkit/lazy-view-stable-references": "error",
|
|
16
|
-
"foldkit/message-binding-matches-tag": "error",
|
|
17
16
|
"foldkit/mount-factory-must-use-element": "error",
|
|
18
17
|
"foldkit/no-array-index-view-keys": "error",
|
|
19
18
|
"foldkit/no-child-message-construction-in-root": "error",
|
|
20
19
|
"foldkit/no-disabling-dev-guardrails": "error",
|
|
21
20
|
"foldkit/no-duplicate-onmount-per-element": "error",
|
|
21
|
+
"foldkit/no-empty-children-array": "error",
|
|
22
22
|
"foldkit/no-empty-object-tagged-call": "error",
|
|
23
23
|
"foldkit/no-hand-rolled-command-struct": "error",
|
|
24
24
|
"foldkit/no-hardcoded-route-strings": "error",
|
|
25
25
|
"foldkit/no-module-level-mutable-state": "error",
|
|
26
|
+
"foldkit/no-nonportable-server-globals": "off",
|
|
26
27
|
"foldkit/no-noop-message": "error",
|
|
27
28
|
"foldkit/no-raw-dom-event-attributes": "error",
|
|
28
29
|
"foldkit/no-spread-in-evo": "error",
|
|
@@ -32,10 +33,30 @@
|
|
|
32
33
|
"foldkit/wrap-child-output-in-got-message": "error"
|
|
33
34
|
},
|
|
34
35
|
"overrides": [
|
|
36
|
+
{
|
|
37
|
+
"files": [
|
|
38
|
+
"**/entry.server.ts",
|
|
39
|
+
"**/entry.server.tsx",
|
|
40
|
+
"**/server/**/*.ts",
|
|
41
|
+
"**/server/**/*.tsx",
|
|
42
|
+
"**/prerender.ts"
|
|
43
|
+
],
|
|
44
|
+
"excludeFiles": [
|
|
45
|
+
"**/*.test.ts",
|
|
46
|
+
"**/*.test.tsx",
|
|
47
|
+
"**/*.spec.ts",
|
|
48
|
+
"**/*.spec.tsx"
|
|
49
|
+
],
|
|
50
|
+
"rules": {
|
|
51
|
+
"foldkit/no-nonportable-server-globals": "error"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
35
54
|
{
|
|
36
55
|
"files": [
|
|
37
56
|
"**/*.test.ts",
|
|
38
|
-
"**/*.test.tsx"
|
|
57
|
+
"**/*.test.tsx",
|
|
58
|
+
"**/*.spec.ts",
|
|
59
|
+
"**/*.spec.tsx"
|
|
39
60
|
],
|
|
40
61
|
"rules": {
|
|
41
62
|
"foldkit/command-binding-matches-name": "off",
|
|
@@ -45,16 +66,17 @@
|
|
|
45
66
|
"foldkit/got-wrapper-carries-only-routing": "off",
|
|
46
67
|
"foldkit/keyed-required-for-mapped-rows": "off",
|
|
47
68
|
"foldkit/lazy-view-stable-references": "off",
|
|
48
|
-
"foldkit/message-binding-matches-tag": "off",
|
|
49
69
|
"foldkit/mount-factory-must-use-element": "off",
|
|
50
70
|
"foldkit/no-array-index-view-keys": "off",
|
|
51
71
|
"foldkit/no-child-message-construction-in-root": "off",
|
|
52
72
|
"foldkit/no-disabling-dev-guardrails": "off",
|
|
53
73
|
"foldkit/no-duplicate-onmount-per-element": "off",
|
|
74
|
+
"foldkit/no-empty-children-array": "off",
|
|
54
75
|
"foldkit/no-empty-object-tagged-call": "off",
|
|
55
76
|
"foldkit/no-hand-rolled-command-struct": "off",
|
|
56
77
|
"foldkit/no-hardcoded-route-strings": "off",
|
|
57
78
|
"foldkit/no-module-level-mutable-state": "off",
|
|
79
|
+
"foldkit/no-nonportable-server-globals": "off",
|
|
58
80
|
"foldkit/no-noop-message": "off",
|
|
59
81
|
"foldkit/no-raw-dom-event-attributes": "off",
|
|
60
82
|
"foldkit/no-spread-in-evo": "off",
|