@rightcapital/lint-eslint-config-rules 2.1.1-renovate-eslint-rule-and-plugin-updates.4263.1.0 → 2.1.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.
package/CHANGELOG.json CHANGED
@@ -1,6 +1,21 @@
1
1
  {
2
2
  "name": "@rightcapital/lint-eslint-config-rules",
3
3
  "entries": [
4
+ {
5
+ "date": "Wed, 12 Nov 2025 10:50:43 GMT",
6
+ "version": "2.1.1",
7
+ "tag": "@rightcapital/lint-eslint-config-rules_v2.1.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "im@pyonpyon.today",
12
+ "package": "@rightcapital/lint-eslint-config-rules",
13
+ "commit": "614fcbb48c30f5dabe029ab9f1f1cd52008d4135",
14
+ "comment": "chore: set proper ESLint and @eslint/core version and upgrade them together"
15
+ }
16
+ ]
17
+ }
18
+ },
4
19
  {
5
20
  "date": "Thu, 06 Nov 2025 02:42:11 GMT",
6
21
  "version": "2.1.0",
package/CHANGELOG.md CHANGED
@@ -1,9 +1,15 @@
1
1
  # Change Log - @rightcapital/lint-eslint-config-rules
2
2
 
3
- <!-- This log was last generated on Tue, 12 Aug 2025 10:40:45 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Wed, 12 Nov 2025 10:50:43 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [2.1.1](https://github.com/RightCapitalHQ/frontend-style-guide/tree/%40rightcapital%2Flint-eslint-config-rules_v2.1.1) (2025-11-12)
8
+
9
+ ### Patches
10
+
11
+ - chore: set proper ESLint and @eslint/core version and upgrade them together ([614fcbb](https://github.com/RightCapitalHQ/frontend-style-guide/commit/614fcbb48c30f5dabe029ab9f1f1cd52008d4135))
12
+
7
13
  ## [2.1.0](https://github.com/RightCapitalHQ/frontend-style-guide/tree/%40rightcapital%2Flint-eslint-config-rules_v2.1.0) (2025-8-12)
8
14
 
9
15
  ### Minor changes
package/lib/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rightcapital/lint-eslint-config-rules",
3
- "version": "2.1.1-renovate-eslint-rule-and-plugin-updates.4263.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Check rule config issues in ESLint configuration",
5
5
  "keywords": [
6
6
  "eslint",
@@ -22,28 +22,30 @@
22
22
  "bin": {
23
23
  "lint-eslint-config-rules": "./lib/cli.js"
24
24
  },
25
+ "scripts": {
26
+ "prebuild": "pnpm run clean",
27
+ "build": "tsc --build",
28
+ "clean": "tsc --build --clean",
29
+ "prepack": "pnpm run build"
30
+ },
25
31
  "dependencies": {
26
32
  "@nodelib/fs.walk": "3.0.1",
27
33
  "core-js": "3.42.0"
28
34
  },
29
35
  "devDependencies": {
36
+ "@rightcapital/tsconfig": "1.2.16",
30
37
  "@types/eslint": "9.6.1",
31
38
  "@types/node": "24.9.2",
32
- "typescript": "5.9.3",
33
- "@rightcapital/tsconfig": "1.2.17-renovate-eslint-rule-and-plugin-updates.4263.1.0"
39
+ "typescript": "5.9.3"
34
40
  },
35
41
  "peerDependencies": {
36
- "eslint": "^9.0.0"
42
+ "eslint": "9.x"
37
43
  },
44
+ "packageManager": "pnpm@10.12.1",
38
45
  "engines": {
39
46
  "node": ">=20.0.0"
40
47
  },
41
48
  "publishConfig": {
42
49
  "registry": "https://registry.npmjs.org"
43
- },
44
- "scripts": {
45
- "prebuild": "pnpm run clean",
46
- "build": "tsc --build",
47
- "clean": "tsc --build --clean"
48
50
  }
49
- }
51
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 RightCapital
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.