@rushstack/eslint-config 4.6.1 → 4.6.2
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 +26 -0
- package/CHANGELOG.md +8 -1
- package/flat/profile/_common.js +1 -1
- package/package.json +6 -5
- package/profile/_common.js +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/eslint-config",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "4.6.2",
|
|
6
|
+
"tag": "@rushstack/eslint-config_v4.6.2",
|
|
7
|
+
"date": "Thu, 19 Feb 2026 00:04:52 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add `sideEffects` field to package.json."
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@rushstack/eslint-patch\" to `1.16.0`"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin\" to `0.23.0`"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin-packlets\" to `0.15.0`"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin-security\" to `0.14.0`"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
4
30
|
{
|
|
5
31
|
"version": "4.6.1",
|
|
6
32
|
"tag": "@rushstack/eslint-config_v4.6.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Change Log - @rushstack/eslint-config
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 19 Feb 2026 00:04:52 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.6.2
|
|
6
|
+
Thu, 19 Feb 2026 00:04:52 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Add `sideEffects` field to package.json.
|
|
4
11
|
|
|
5
12
|
## 4.6.1
|
|
6
13
|
Wed, 12 Nov 2025 01:57:54 GMT
|
package/flat/profile/_common.js
CHANGED
|
@@ -135,7 +135,7 @@ const commonNamingConventionSelectors = [
|
|
|
135
135
|
// A PascalCase method can arise somewhat legitimately in this way:
|
|
136
136
|
//
|
|
137
137
|
// class MyClass {
|
|
138
|
-
// public static MyReactButton(props: IButtonProps):
|
|
138
|
+
// public static MyReactButton(props: IButtonProps): React.ReactElement {
|
|
139
139
|
// . . .
|
|
140
140
|
// }
|
|
141
141
|
// }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/eslint-config",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.2",
|
|
4
4
|
"description": "A TypeScript ESLint ruleset designed for large teams and projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -30,15 +30,16 @@
|
|
|
30
30
|
"eslint-plugin-promise": "~7.2.1",
|
|
31
31
|
"eslint-plugin-react": "~7.37.5",
|
|
32
32
|
"eslint-plugin-tsdoc": "~0.5.0",
|
|
33
|
-
"@rushstack/eslint-patch": "1.
|
|
34
|
-
"@rushstack/eslint-plugin
|
|
35
|
-
"@rushstack/eslint-plugin": "0.
|
|
36
|
-
"@rushstack/eslint-plugin-
|
|
33
|
+
"@rushstack/eslint-patch": "1.16.0",
|
|
34
|
+
"@rushstack/eslint-plugin": "0.23.0",
|
|
35
|
+
"@rushstack/eslint-plugin-security": "0.14.0",
|
|
36
|
+
"@rushstack/eslint-plugin-packlets": "0.15.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint": "~9.37.0",
|
|
40
40
|
"typescript": "~5.8.2"
|
|
41
41
|
},
|
|
42
|
+
"sideEffects": false,
|
|
42
43
|
"scripts": {
|
|
43
44
|
"build": "",
|
|
44
45
|
"_phase:build": ""
|
package/profile/_common.js
CHANGED
|
@@ -110,7 +110,7 @@ const namingConventionRuleOptions = [
|
|
|
110
110
|
// A PascalCase method can arise somewhat legitimately in this way:
|
|
111
111
|
//
|
|
112
112
|
// class MyClass {
|
|
113
|
-
// public static MyReactButton(props: IButtonProps):
|
|
113
|
+
// public static MyReactButton(props: IButtonProps): React.ReactElement {
|
|
114
114
|
// . . .
|
|
115
115
|
// }
|
|
116
116
|
// }
|