@gooddata/util 11.19.0-alpha.8 → 11.19.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.
Files changed (2) hide show
  1. package/esm/index.js +1 -1
  2. package/package.json +12 -6
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2019-2026 GoodData Corporation
2
- /* eslint-disable no-barrel-files/no-barrel-files */
2
+ /* oxlint-disable no-barrel-files/no-barrel-files */
3
3
  /**
4
4
  * This package contains utility functions used in production or test code of multiple different GoodData.UI packages.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/util",
3
- "version": "11.19.0-alpha.8",
3
+ "version": "11.19.0",
4
4
  "description": "GoodData Utility Functions",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -34,18 +34,20 @@
34
34
  "dependency-cruiser": "^14.1.2",
35
35
  "eslint": "^9.39.2",
36
36
  "eslint-import-resolver-typescript": "4.4.4",
37
- "eslint-plugin-header": "3.1.1",
37
+ "eslint-plugin-headers": "1.3.3",
38
38
  "eslint-plugin-import-esm": "1.2.1",
39
39
  "eslint-plugin-import-x": "4.16.1",
40
40
  "eslint-plugin-jsdoc": "62.1.0",
41
41
  "eslint-plugin-no-barrel-files": "1.2.2",
42
- "eslint-plugin-no-only-tests": "3.3.0",
43
42
  "eslint-plugin-sonarjs": "3.0.6",
44
43
  "npm-run-all": "^4.1.5",
45
44
  "oxfmt": "0.27.0",
45
+ "oxlint": "^1.43.0",
46
+ "oxlint-tsgolint": "0.11.4",
46
47
  "typescript": "5.9.3",
47
48
  "vitest": "4.0.8",
48
- "@gooddata/eslint-config": "11.19.0-alpha.8"
49
+ "@gooddata/eslint-config": "11.19.0",
50
+ "@gooddata/oxlint-config": "11.19.0"
49
51
  },
50
52
  "scripts": {
51
53
  "_phase:build": "npm run build",
@@ -63,7 +65,11 @@
63
65
  "oxfmt-write": "oxfmt .",
64
66
  "test": "vitest watch",
65
67
  "test-once": "vitest run",
66
- "validate": "npm run eslint && npm run dep-cruiser && npm run oxfmt-check",
67
- "validate-esm": "node --input-type=module --eval 'import \"@gooddata/util\"'"
68
+ "validate": "npm run lint && npm run dep-cruiser && npm run oxfmt-check",
69
+ "validate-esm": "node --input-type=module --eval 'import \"@gooddata/util\"'",
70
+ "lint": "npm run oxlint && npm run eslint",
71
+ "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
72
+ "oxlint": "oxlint . --type-aware",
73
+ "oxlint-fix": "oxlint . --type-aware --fix"
68
74
  }
69
75
  }