@hitachivantara/uikit-config 0.6.0 → 0.6.2
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/oxlint/base.json +3 -1
- package/oxlint/default.json +11 -1
- package/oxlint/strict.json +1 -1
- package/package.json +2 -2
package/oxlint/base.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.56.0/npm/oxlint/configuration_schema.json",
|
|
3
3
|
"plugins": ["typescript", "unicorn", "react", "oxc", "import", "jsx-a11y"],
|
|
4
4
|
"categories": {
|
|
5
5
|
"correctness": "error"
|
|
@@ -29,6 +29,8 @@
|
|
|
29
29
|
}
|
|
30
30
|
],
|
|
31
31
|
"jsx_a11y/no-autofocus": "off",
|
|
32
|
+
"jsx-a11y/prefer-tag-over-role": "off",
|
|
33
|
+
"jsx-a11y/interactive-supports-focus": "warn",
|
|
32
34
|
"jsx_a11y/role-supports-aria-props": "off",
|
|
33
35
|
"jsx_a11y/role-has-required-aria-props": "off"
|
|
34
36
|
},
|
package/oxlint/default.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.56.0/npm/oxlint/configuration_schema.json",
|
|
3
3
|
"extends": ["./base.json"],
|
|
4
4
|
"categories": {
|
|
5
5
|
"perf": "warn",
|
|
@@ -20,17 +20,26 @@
|
|
|
20
20
|
"eslint/default-case": "off",
|
|
21
21
|
"eslint/no-console": ["error", { "allow": ["warn", "error", "info"] }],
|
|
22
22
|
"eslint/no-empty-function": "off",
|
|
23
|
+
"eslint/no-underscore-dangle": "warn",
|
|
23
24
|
"eslint/no-eq-null": "off",
|
|
24
25
|
"eslint/no-param-reassign": "off",
|
|
25
26
|
"eslint/no-plusplus": "off",
|
|
26
27
|
"eslint/no-undefined": "off",
|
|
28
|
+
"eslint/no-shadow": "warn",
|
|
29
|
+
"eslint/no-use-before-define": "off",
|
|
27
30
|
"import/no-default-export": "off",
|
|
31
|
+
"import/no-relative-parent-imports": "off",
|
|
28
32
|
"import/unambiguous": "off",
|
|
29
33
|
"oxc/no-async-await": "off",
|
|
30
34
|
"oxc/no-barrel-file": "off",
|
|
31
35
|
"oxc/no-optional-chaining": "off",
|
|
32
36
|
"oxc/no-rest-spread-properties": "off",
|
|
37
|
+
"react/no-multi-comp": "off",
|
|
38
|
+
"react/no-clone-element": "warn",
|
|
39
|
+
"react/no-react-children": "warn",
|
|
33
40
|
"react/jsx-filename-extension": "off",
|
|
41
|
+
"react/forbid-component-props": "off",
|
|
42
|
+
"typescript/explicit-member-accessibility": "off",
|
|
34
43
|
"typescript/explicit-function-return-type": "off",
|
|
35
44
|
"typescript/explicit-module-boundary-types": "off",
|
|
36
45
|
"typescript/no-dynamic-delete": "off",
|
|
@@ -39,6 +48,7 @@
|
|
|
39
48
|
"typescript/no-non-null-assertion": "off",
|
|
40
49
|
"unicorn/consistent-function-scoping": "off",
|
|
41
50
|
"unicorn/no-anonymous-default-export": "off",
|
|
51
|
+
"unicorn/no-abusive-eslint-disable": "off",
|
|
42
52
|
"unicorn/no-array-for-each": "off",
|
|
43
53
|
"unicorn/no-array-reduce": "off",
|
|
44
54
|
"unicorn/no-nested-ternary": "off"
|
package/oxlint/strict.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.56.0/npm/oxlint/configuration_schema.json",
|
|
3
3
|
"extends": ["./base.json", "./default.json"],
|
|
4
4
|
"rules": {
|
|
5
5
|
// #region Pedantic
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-config",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Hitachi Vantara UI Kit Team",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"access": "public",
|
|
37
37
|
"directory": "package"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "b9034f709fcfa749a28a52ed31dab060455493d6"
|
|
40
40
|
}
|