@hitachivantara/uikit-config 0.6.0 → 0.6.3

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.1.0/npm/oxlint/configuration_schema.json",
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": "off",
32
34
  "jsx_a11y/role-supports-aria-props": "off",
33
35
  "jsx_a11y/role-has-required-aria-props": "off"
34
36
  },
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.1.0/npm/oxlint/configuration_schema.json",
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": "off",
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": "off",
39
+ "react/no-react-children": "off",
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"
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/tags/oxlint_v1.1.0/npm/oxlint/configuration_schema.json",
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.0",
3
+ "version": "0.6.3",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "Hitachi Vantara UI Kit Team",
@@ -28,13 +28,9 @@
28
28
  "./oxlint/*.json": "./oxlint/*.json",
29
29
  "./tsconfig": "./tsconfig.json"
30
30
  },
31
- "peerDependencies": {
32
- "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
33
- "prettier": "^3.0.0"
34
- },
35
31
  "publishConfig": {
36
32
  "access": "public",
37
33
  "directory": "package"
38
34
  },
39
- "gitHead": "f2b8a9e107bc8886231d527b37b30716d891105c"
35
+ "gitHead": "65c4f4394e8f8c7cccb58203e1c08c6832434638"
40
36
  }