@foldkit/oxlint-plugin 0.2.0 → 0.4.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/all.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "jsPlugins": [
3
+ {
4
+ "name": "foldkit",
5
+ "specifier": "@foldkit/oxlint-plugin"
6
+ }
7
+ ],
8
+ "rules": {
9
+ "foldkit/command-binding-matches-name": "error",
10
+ "foldkit/command-define-pascal-const": "error",
11
+ "foldkit/got-prefix-requires-submodel-payload": "error",
12
+ "foldkit/got-submodel-message-name": "error",
13
+ "foldkit/got-wrapper-carries-only-routing": "error",
14
+ "foldkit/keyed-required-for-mapped-rows": "error",
15
+ "foldkit/lazy-view-stable-references": "error",
16
+ "foldkit/message-binding-matches-tag": "error",
17
+ "foldkit/mount-factory-must-use-element": "error",
18
+ "foldkit/no-array-index-view-keys": "error",
19
+ "foldkit/no-child-message-construction-in-root": "error",
20
+ "foldkit/no-disabling-dev-guardrails": "error",
21
+ "foldkit/no-duplicate-onmount-per-element": "error",
22
+ "foldkit/no-empty-object-tagged-call": "error",
23
+ "foldkit/no-hand-rolled-command-struct": "error",
24
+ "foldkit/no-hardcoded-route-strings": "error",
25
+ "foldkit/no-module-level-mutable-state": "error",
26
+ "foldkit/no-noop-message": "error",
27
+ "foldkit/no-raw-dom-event-attributes": "error",
28
+ "foldkit/no-spread-in-evo": "error",
29
+ "foldkit/prefer-callable-message-constructor": "error",
30
+ "foldkit/require-rel-for-external-link": "error",
31
+ "foldkit/selection-submodel-factory-at-module-scope": "error",
32
+ "foldkit/wrap-child-output-in-got-message": "error"
33
+ },
34
+ "overrides": [
35
+ {
36
+ "files": [
37
+ "**/*.test.ts",
38
+ "**/*.test.tsx"
39
+ ],
40
+ "rules": {
41
+ "foldkit/command-binding-matches-name": "off",
42
+ "foldkit/command-define-pascal-const": "off",
43
+ "foldkit/got-prefix-requires-submodel-payload": "off",
44
+ "foldkit/got-submodel-message-name": "off",
45
+ "foldkit/got-wrapper-carries-only-routing": "off",
46
+ "foldkit/keyed-required-for-mapped-rows": "off",
47
+ "foldkit/lazy-view-stable-references": "off",
48
+ "foldkit/message-binding-matches-tag": "off",
49
+ "foldkit/mount-factory-must-use-element": "off",
50
+ "foldkit/no-array-index-view-keys": "off",
51
+ "foldkit/no-child-message-construction-in-root": "off",
52
+ "foldkit/no-disabling-dev-guardrails": "off",
53
+ "foldkit/no-duplicate-onmount-per-element": "off",
54
+ "foldkit/no-empty-object-tagged-call": "off",
55
+ "foldkit/no-hand-rolled-command-struct": "off",
56
+ "foldkit/no-hardcoded-route-strings": "off",
57
+ "foldkit/no-module-level-mutable-state": "off",
58
+ "foldkit/no-noop-message": "off",
59
+ "foldkit/no-raw-dom-event-attributes": "off",
60
+ "foldkit/no-spread-in-evo": "off",
61
+ "foldkit/prefer-callable-message-constructor": "off",
62
+ "foldkit/require-rel-for-external-link": "off",
63
+ "foldkit/selection-submodel-factory-at-module-scope": "off",
64
+ "foldkit/wrap-child-output-in-got-message": "off"
65
+ }
66
+ }
67
+ ]
68
+ }