@gooddata/oxlint-config 11.20.0-alpha.0 → 11.20.0-alpha.1

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 (1) hide show
  1. package/package.json +8 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/oxlint-config",
3
- "version": "11.20.0-alpha.0",
3
+ "version": "11.20.0-alpha.1",
4
4
  "license": "MIT",
5
5
  "author": "GoodData",
6
6
  "repository": {
@@ -56,8 +56,8 @@
56
56
  "oxlint-tsgolint": "0.11.4",
57
57
  "typescript": "5.9.3",
58
58
  "vite-node": "^5.2.0",
59
- "@gooddata/eslint-config": "11.20.0-alpha.0",
60
- "@gooddata/lint-config": "11.20.0-alpha.0"
59
+ "@gooddata/eslint-config": "11.20.0-alpha.1",
60
+ "@gooddata/lint-config": "11.20.0-alpha.1"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "eslint-plugin-headers": "1.3.3",
@@ -71,15 +71,11 @@
71
71
  "_phase:validate": "npm run validate",
72
72
  "build": "rm -rf dist && mkdir dist && vite-node scripts/build.ts && tsgo",
73
73
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
74
- "eslint": "eslint .",
75
- "eslint-fix": "eslint . --fix",
76
- "lint": "npm run oxlint && npm run eslint",
77
- "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
78
- "oxfmt-check": "oxfmt --check .",
79
- "oxfmt-write": "oxfmt .",
80
- "oxlint": "oxlint . --type-aware",
81
- "oxlint-fix": "oxlint . --type-aware --fix",
74
+ "lint": "oxlint . --type-aware && eslint .",
75
+ "lint-fix": "oxlint . --type-aware --fix && eslint . --fix",
76
+ "format-check": "oxfmt --check .",
77
+ "format-write": "oxfmt .",
82
78
  "update-package": "vite-node scripts/updatePackage.ts",
83
- "validate": "npm run lint && npm run oxfmt-check"
79
+ "validate": "npm run lint && npm run format-check"
84
80
  }
85
81
  }