@jsse/eslint-config 0.8.5 → 0.8.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jsse/eslint-config",
3
3
  "type": "module",
4
- "version": "0.8.5",
4
+ "version": "0.8.7",
5
5
  "description": "@jsse/eslint-config ~ WYSIWYG",
6
6
  "author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
7
7
  "license": "MIT",
@@ -19,8 +19,7 @@
19
19
  "types": "./dist/index.d.ts",
20
20
  "import": "./dist/index.js"
21
21
  },
22
- "./package.json": "./package.json",
23
- "./dist/*": "./dist/*"
22
+ "./package.json": "./package.json"
24
23
  },
25
24
  "main": "./dist/index.js",
26
25
  "types": "./dist/index.d.ts",
@@ -62,7 +61,7 @@
62
61
  "@e18e/eslint-plugin": "^0.5.1",
63
62
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
64
63
  "@eslint/js": "^10.0.1",
65
- "@eslint/markdown": "^8.0.2",
64
+ "@eslint/markdown": "^8.0.3",
66
65
  "@stylistic/eslint-plugin": "5.10.0",
67
66
  "@typescript-eslint/eslint-plugin": "^8.62.1",
68
67
  "@typescript-eslint/parser": "^8.62.1",
@@ -85,17 +84,17 @@
85
84
  "eslint-plugin-react-refresh": "^0.5.3",
86
85
  "eslint-plugin-regexp": "^3.1.1",
87
86
  "eslint-plugin-toml": "^1.4.0",
88
- "eslint-plugin-unicorn": "^69.0.0",
87
+ "eslint-plugin-unicorn": "^70.0.0",
89
88
  "eslint-plugin-unused-imports": "^4.4.1",
90
89
  "eslint-plugin-yml": "^3.5.0",
91
90
  "jsonc-eslint-parser": "^3.1.0",
92
91
  "toml-eslint-parser": "^1.0.3",
93
- "typescript-eslint": "^8.62.0",
92
+ "typescript-eslint": "^8.62.1",
94
93
  "yaml-eslint-parser": "^2.0.0"
95
94
  },
96
95
  "devDependencies": {
97
96
  "@changesets/cli": "^2.31.0",
98
- "@eslint-react/eslint-plugin": "^5.10.0",
97
+ "@eslint-react/eslint-plugin": "^5.10.1",
99
98
  "@jsse/prettier-config": "^1.0.2",
100
99
  "@jsse/tsconfig": "^0.5.1",
101
100
  "@optique/core": "^1.1.1",
@@ -111,19 +110,19 @@
111
110
  "execa": "~9.6.1",
112
111
  "fast-equals": "^6.0.0",
113
112
  "fast-glob": "^3.3.3",
114
- "fs-extra": "^11.3.5",
113
+ "fs-extra": "^11.3.6",
115
114
  "globals": "^17.7.0",
116
- "knip": "^6.23.0",
115
+ "knip": "^6.24.0",
117
116
  "local-pkg": "^1.2.1",
118
- "oxfmt": "^0.56.0",
119
- "oxlint": "^1.71.0",
117
+ "oxfmt": "^0.57.0",
118
+ "oxlint": "^1.72.0",
120
119
  "picocolors": "^1.1.1",
121
- "prettier": "^3.9.3",
120
+ "prettier": "^3.9.4",
122
121
  "publint": "^0.3.21",
123
122
  "react": "~19.2.7",
124
123
  "rimraf": "^6.1.3",
125
124
  "tsdown": "^0.22.3",
126
- "tsx": "^4.22.4",
125
+ "tsx": "^4.22.5",
127
126
  "typescript": "~6.0.3",
128
127
  "vitest": "^4.1.9"
129
128
  },
@@ -131,7 +130,7 @@
131
130
  "scripts": {
132
131
  "build": "pnpm gen && pnpm build-fast --dts && pnpm build:tsc && eslint .",
133
132
  "build:tsc": "tsc -b tsconfig.build.json",
134
- "build-fast": "tsdown src/index.ts src/cli.ts --format esm --clean",
133
+ "build-fast": "tsdown --clean",
135
134
  "gen": "tsx scripts/gen.ts && prettier -w --cache --object-wrap=collapse src/_generated",
136
135
  "dev": "tsdown src/index.ts --format esm --watch",
137
136
  "fmt": "prettier -w --object-wrap=collapse .",
@@ -1,49 +0,0 @@
1
- import process from "node:process";
2
- //#region src/_generated/version.ts
3
- const VERSION = "0.8.5";
4
- //#endregion
5
- //#region src/const.ts
6
- /**
7
- * CONSTANTS LISTS AND REFERENCES OH MY!
8
- */
9
- const isEnvDebug = () => {
10
- return [
11
- "DEBUG",
12
- "JSSE_DEBUG",
13
- "JSSEDEBUG"
14
- ].some((env) => {
15
- const value = process.env[env];
16
- return [
17
- "1",
18
- "true",
19
- "t",
20
- "on",
21
- "yes",
22
- "y"
23
- ].includes(value ?? "");
24
- });
25
- };
26
- const DEBUG = isEnvDebug();
27
- const SLOW_RULES = [
28
- "@typescript-eslint/no-misused-promises",
29
- "@typescript-eslint/no-redeclare",
30
- "@typescript-eslint/no-unsafe-assignment",
31
- "@typescript-eslint/no-unsafe-call",
32
- "@typescript-eslint/no-unsafe-member-access",
33
- "@typescript-eslint/no-unsafe-return",
34
- "import/no-duplicates",
35
- "jsdoc/check-access",
36
- "jsdoc/check-alignment",
37
- "jsdoc/check-property-names",
38
- "jsdoc/check-types",
39
- "jsdoc/empty-tags",
40
- "jsdoc/multiline-blocks",
41
- "jsdoc/no-multi-asterisks",
42
- "jsdoc/require-property-description",
43
- "jsdoc/require-property-name",
44
- "jsdoc/require-property",
45
- "unicorn/expiring-todo-comments",
46
- "unicorn/no-unnecessary-polyfills"
47
- ];
48
- //#endregion
49
- export { SLOW_RULES as n, VERSION as r, DEBUG as t };