eslint-plugin-nextfriday 1.24.0 → 2.0.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.
- package/CHANGELOG.md +6 -0
- package/lib/index.cjs +4 -5
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +4 -5
- package/lib/index.js.map +1 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# eslint-plugin-nextfriday
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#101](https://github.com/next-friday/eslint-plugin-nextfriday/pull/101) [`f18f6d0`](https://github.com/next-friday/eslint-plugin-nextfriday/commit/f18f6d0fbb5935ee5ca2618b3438b42f6078ea8b) Thanks [@joetakara](https://github.com/joetakara)! - Upgrade to ESLint 10. Peer dependency now requires `eslint@^10.0.0` (previously `^9.0.0`). Bumped `eslint` and `@eslint/js` to v10. Removed `eslint-config-airbnb-extended` (no ESLint 10 support upstream); local lint config now relies on `@eslint/js`, `typescript-eslint`, `eslint-plugin-import-x`, `eslint-plugin-sonarjs`, `eslint-plugin-jest`, and `eslint-plugin-prettier` directly.
|
|
8
|
+
|
|
3
9
|
## 1.24.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/lib/index.cjs
CHANGED
|
@@ -42,7 +42,7 @@ var import_eslint_plugin_unicorn = __toESM(require("eslint-plugin-unicorn"), 1);
|
|
|
42
42
|
// package.json
|
|
43
43
|
var package_default = {
|
|
44
44
|
name: "eslint-plugin-nextfriday",
|
|
45
|
-
version: "
|
|
45
|
+
version: "2.0.0",
|
|
46
46
|
description: "A comprehensive ESLint plugin providing custom rules and configurations for Next Friday development workflows.",
|
|
47
47
|
keywords: [
|
|
48
48
|
"eslint",
|
|
@@ -117,7 +117,7 @@ var package_default = {
|
|
|
117
117
|
"@changesets/cli": "^2.31.0",
|
|
118
118
|
"@commitlint/cli": "^20.5.2",
|
|
119
119
|
"@commitlint/config-conventional": "^20.5.0",
|
|
120
|
-
"@eslint/js": "^
|
|
120
|
+
"@eslint/js": "^10.0.1",
|
|
121
121
|
"@jest/globals": "^30.3.0",
|
|
122
122
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
123
123
|
"@swc/core": "^1.15.32",
|
|
@@ -128,8 +128,7 @@ var package_default = {
|
|
|
128
128
|
"@types/ramda": "^0.31.1",
|
|
129
129
|
"@typescript-eslint/parser": "^8.59.1",
|
|
130
130
|
"@typescript-eslint/rule-tester": "^8.59.1",
|
|
131
|
-
eslint: "^
|
|
132
|
-
"eslint-config-airbnb-extended": "^3.0.1",
|
|
131
|
+
eslint: "^10.2.1",
|
|
133
132
|
"eslint-config-prettier": "^10.1.8",
|
|
134
133
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
135
134
|
"eslint-plugin-import-x": "^4.16.2",
|
|
@@ -146,7 +145,7 @@ var package_default = {
|
|
|
146
145
|
"typescript-eslint": "^8.59.1"
|
|
147
146
|
},
|
|
148
147
|
peerDependencies: {
|
|
149
|
-
eslint: "^
|
|
148
|
+
eslint: "^10.0.0"
|
|
150
149
|
},
|
|
151
150
|
packageManager: "pnpm@9.12.0",
|
|
152
151
|
engines: {
|