@gooddata/oxlint-config 11.29.0-alpha.3 → 11.29.0-alpha.4

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/PACKAGES.md CHANGED
@@ -4,6 +4,7 @@ This table shows which packages are required for each configuration.
4
4
 
5
5
  | Package | base | browser-esm | esm | esm-playwright | esm-react | esm-react-playwright | esm-react-vitest | esm-react-vitest-storybook | esm-vitest | react | react-playwright | react-vitest |
6
6
  | ----------------------------- | ------- | ----------- | ------- | -------------- | --------- | -------------------- | ---------------- | -------------------------- | ---------- | ------- | ---------------- | ------------ |
7
+ | @vitest/eslint-plugin | | | | | | | 1.6.6 | 1.6.6 | 1.6.6 | | | 1.6.6 |
7
8
  | eslint-plugin-chai-friendly | | | | 1.1.0 | | 1.1.0 | | | | | 1.1.0 | |
8
9
  | eslint-plugin-headers | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 | 1.3.3 |
9
10
  | eslint-plugin-import-esm | | 1.2.1 | 1.2.1 | 1.2.1 | 1.2.1 | 1.2.1 | 1.2.1 | 1.2.1 | 1.2.1 | | | |
@@ -4,7 +4,8 @@
4
4
  "oxc",
5
5
  "eslint",
6
6
  "typescript",
7
- "import"
7
+ "import",
8
+ "vitest"
8
9
  ],
9
10
  "jsPlugins": [
10
11
  {
@@ -23,6 +24,10 @@
23
24
  "name": "import-esm",
24
25
  "specifier": "eslint-plugin-import-esm"
25
26
  },
27
+ {
28
+ "name": "vitest-js",
29
+ "specifier": "@vitest/eslint-plugin"
30
+ },
26
31
  {
27
32
  "name": "no-only-tests",
28
33
  "specifier": "eslint-plugin-no-only-tests"
@@ -935,6 +940,23 @@
935
940
  "no-eval": 2,
936
941
  "no-octal-escape": 2,
937
942
  "import-esm/explicit-extension": "error",
943
+ "vitest/no-conditional-expect": "error",
944
+ "vitest/no-import-node-test": "error",
945
+ "vitest/no-interpolation-in-snapshots": "error",
946
+ "vitest/no-mocks-import": "error",
947
+ "vitest/no-standalone-expect": "error",
948
+ "vitest/no-unneeded-async-expect-function": "error",
949
+ "vitest/prefer-called-exactly-once-with": "error",
950
+ "vitest/require-local-test-context-for-concurrent-snapshots": "error",
951
+ "vitest/valid-describe-callback": "error",
952
+ "vitest/expect-expect": "off",
953
+ "vitest/no-commented-out-tests": "warn",
954
+ "vitest/valid-title": "error",
955
+ "vitest/no-disabled-tests": "warn",
956
+ "vitest/no-focused-tests": "warn",
957
+ "vitest/no-identical-title": "warn",
958
+ "vitest-js/valid-expect": "warn",
959
+ "vitest-js/valid-expect-in-promise": "error",
938
960
  "no-only-tests/no-only-tests": [
939
961
  "error",
940
962
  {
@@ -4,7 +4,8 @@
4
4
  "oxc",
5
5
  "eslint",
6
6
  "typescript",
7
- "import"
7
+ "import",
8
+ "vitest"
8
9
  ],
9
10
  "jsPlugins": [
10
11
  {
@@ -23,6 +24,10 @@
23
24
  "name": "import-esm",
24
25
  "specifier": "eslint-plugin-import-esm"
25
26
  },
27
+ {
28
+ "name": "vitest-js",
29
+ "specifier": "@vitest/eslint-plugin"
30
+ },
26
31
  {
27
32
  "name": "no-only-tests",
28
33
  "specifier": "eslint-plugin-no-only-tests"
@@ -935,6 +940,23 @@
935
940
  "no-eval": 2,
936
941
  "no-octal-escape": 2,
937
942
  "import-esm/explicit-extension": "error",
943
+ "vitest/no-conditional-expect": "error",
944
+ "vitest/no-import-node-test": "error",
945
+ "vitest/no-interpolation-in-snapshots": "error",
946
+ "vitest/no-mocks-import": "error",
947
+ "vitest/no-standalone-expect": "error",
948
+ "vitest/no-unneeded-async-expect-function": "error",
949
+ "vitest/prefer-called-exactly-once-with": "error",
950
+ "vitest/require-local-test-context-for-concurrent-snapshots": "error",
951
+ "vitest/valid-describe-callback": "error",
952
+ "vitest/expect-expect": "off",
953
+ "vitest/no-commented-out-tests": "warn",
954
+ "vitest/valid-title": "error",
955
+ "vitest/no-disabled-tests": "warn",
956
+ "vitest/no-focused-tests": "warn",
957
+ "vitest/no-identical-title": "warn",
958
+ "vitest-js/valid-expect": "warn",
959
+ "vitest-js/valid-expect-in-promise": "error",
938
960
  "no-only-tests/no-only-tests": [
939
961
  "error",
940
962
  {
@@ -4,7 +4,8 @@
4
4
  "oxc",
5
5
  "eslint",
6
6
  "typescript",
7
- "import"
7
+ "import",
8
+ "vitest"
8
9
  ],
9
10
  "jsPlugins": [
10
11
  {
@@ -23,6 +24,10 @@
23
24
  "name": "import-esm",
24
25
  "specifier": "eslint-plugin-import-esm"
25
26
  },
27
+ {
28
+ "name": "vitest-js",
29
+ "specifier": "@vitest/eslint-plugin"
30
+ },
26
31
  {
27
32
  "name": "no-only-tests",
28
33
  "specifier": "eslint-plugin-no-only-tests"
@@ -935,6 +940,23 @@
935
940
  "no-eval": 2,
936
941
  "no-octal-escape": 2,
937
942
  "import-esm/explicit-extension": "error",
943
+ "vitest/no-conditional-expect": "error",
944
+ "vitest/no-import-node-test": "error",
945
+ "vitest/no-interpolation-in-snapshots": "error",
946
+ "vitest/no-mocks-import": "error",
947
+ "vitest/no-standalone-expect": "error",
948
+ "vitest/no-unneeded-async-expect-function": "error",
949
+ "vitest/prefer-called-exactly-once-with": "error",
950
+ "vitest/require-local-test-context-for-concurrent-snapshots": "error",
951
+ "vitest/valid-describe-callback": "error",
952
+ "vitest/expect-expect": "off",
953
+ "vitest/no-commented-out-tests": "warn",
954
+ "vitest/valid-title": "error",
955
+ "vitest/no-disabled-tests": "warn",
956
+ "vitest/no-focused-tests": "warn",
957
+ "vitest/no-identical-title": "warn",
958
+ "vitest-js/valid-expect": "warn",
959
+ "vitest-js/valid-expect-in-promise": "error",
938
960
  "no-only-tests/no-only-tests": [
939
961
  "error",
940
962
  {
@@ -4,7 +4,8 @@
4
4
  "oxc",
5
5
  "eslint",
6
6
  "typescript",
7
- "import"
7
+ "import",
8
+ "vitest"
8
9
  ],
9
10
  "jsPlugins": [
10
11
  {
@@ -19,6 +20,10 @@
19
20
  "name": "sonarjs",
20
21
  "specifier": "eslint-plugin-sonarjs"
21
22
  },
23
+ {
24
+ "name": "vitest-js",
25
+ "specifier": "@vitest/eslint-plugin"
26
+ },
22
27
  {
23
28
  "name": "no-only-tests",
24
29
  "specifier": "eslint-plugin-no-only-tests"
@@ -930,6 +935,23 @@
930
935
  "no-caller": 2,
931
936
  "no-eval": 2,
932
937
  "no-octal-escape": 2,
938
+ "vitest/no-conditional-expect": "error",
939
+ "vitest/no-import-node-test": "error",
940
+ "vitest/no-interpolation-in-snapshots": "error",
941
+ "vitest/no-mocks-import": "error",
942
+ "vitest/no-standalone-expect": "error",
943
+ "vitest/no-unneeded-async-expect-function": "error",
944
+ "vitest/prefer-called-exactly-once-with": "error",
945
+ "vitest/require-local-test-context-for-concurrent-snapshots": "error",
946
+ "vitest/valid-describe-callback": "error",
947
+ "vitest/expect-expect": "off",
948
+ "vitest/no-commented-out-tests": "warn",
949
+ "vitest/valid-title": "error",
950
+ "vitest/no-disabled-tests": "warn",
951
+ "vitest/no-focused-tests": "warn",
952
+ "vitest/no-identical-title": "warn",
953
+ "vitest-js/valid-expect": "warn",
954
+ "vitest-js/valid-expect-in-promise": "error",
933
955
  "no-only-tests/no-only-tests": [
934
956
  "error",
935
957
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/oxlint-config",
3
- "version": "11.29.0-alpha.3",
3
+ "version": "11.29.0-alpha.4",
4
4
  "license": "MIT",
5
5
  "author": "GoodData",
6
6
  "repository": {
@@ -38,6 +38,7 @@
38
38
  "@typescript-eslint/eslint-plugin": "8.58.0",
39
39
  "@typescript-eslint/parser": "8.58.0",
40
40
  "@typescript/native-preview": "7.0.0-dev.20260202.1",
41
+ "@vitest/eslint-plugin": "1.6.6",
41
42
  "eslint": "^9.39.2",
42
43
  "eslint-import-resolver-typescript": "4.4.4",
43
44
  "eslint-plugin-chai-friendly": "1.1.0",
@@ -55,8 +56,8 @@
55
56
  "oxlint-tsgolint": "0.11.4",
56
57
  "typescript": "5.9.3",
57
58
  "vite-node": "^5.2.0",
58
- "@gooddata/eslint-config": "11.29.0-alpha.3",
59
- "@gooddata/lint-config": "11.29.0-alpha.3"
59
+ "@gooddata/eslint-config": "11.29.0-alpha.4",
60
+ "@gooddata/lint-config": "11.29.0-alpha.4"
60
61
  },
61
62
  "peerDependencies": {
62
63
  "eslint-plugin-headers": "1.3.3",