@isentinel/eslint-config 6.0.0-beta.21 → 6.0.0-beta.22
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/dist/cli.mjs +6 -7
- package/dist/index.d.mts +135 -91
- package/dist/index.mjs +20 -3
- package/dist/lint-cli.mjs +1 -1
- package/dist/oxlint.d.mts +204 -162
- package/dist/oxlint.mjs +20 -4
- package/package.json +18 -19
package/dist/cli.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import path from "node:path";
|
|
|
9
9
|
import { existsSync, readFileSync } from "fs";
|
|
10
10
|
import { execSync } from "node:child_process";
|
|
11
11
|
//#region package.json
|
|
12
|
-
var version = "6.0.0-beta.
|
|
12
|
+
var version = "6.0.0-beta.22";
|
|
13
13
|
var package_default = {
|
|
14
14
|
name: "@isentinel/eslint-config",
|
|
15
15
|
version,
|
|
@@ -63,8 +63,7 @@ var package_default = {
|
|
|
63
63
|
"dev": "npx @eslint/config-inspector --config eslint-inspector.config.ts",
|
|
64
64
|
"gen": "node scripts/typegen.ts && node scripts/typegen-oxlint.ts && node scripts/typegen-defaults.ts && node scripts/typegen-defaults-oxlint.ts && node scripts/versiongen.ts",
|
|
65
65
|
"postgen": "echo 'Generation complete!'",
|
|
66
|
-
"lint": "
|
|
67
|
-
"lint:ci": "concurrently 'oxlint' 'eslint --cache --cache-strategy content'",
|
|
66
|
+
"lint": "isentinel-lint",
|
|
68
67
|
"oxlint": "oxlint",
|
|
69
68
|
"prepack": "nr build",
|
|
70
69
|
"release": "bumpp",
|
|
@@ -525,10 +524,10 @@ async function updateEslintFiles(result) {
|
|
|
525
524
|
//#region src/cli/constants-generated.ts
|
|
526
525
|
const versionsMap = {
|
|
527
526
|
"eslint": "10.7.0",
|
|
528
|
-
"eslint-plugin-jest": "29.15.
|
|
529
|
-
"eslint-plugin-react-jsx": "5.17.
|
|
530
|
-
"eslint-plugin-react-naming-convention": "5.17.
|
|
531
|
-
"eslint-plugin-react-x": "5.17.
|
|
527
|
+
"eslint-plugin-jest": "29.15.5",
|
|
528
|
+
"eslint-plugin-react-jsx": "5.17.3",
|
|
529
|
+
"eslint-plugin-react-naming-convention": "5.17.3",
|
|
530
|
+
"eslint-plugin-react-x": "5.17.3"
|
|
532
531
|
};
|
|
533
532
|
//#endregion
|
|
534
533
|
//#region src/cli/stages/update-package-json.ts
|