@rushstack/eslint-config 4.0.1 → 4.1.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.json +32 -0
- package/CHANGELOG.md +15 -1
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/eslint-config",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "4.1.0",
|
|
6
|
+
"tag": "@rushstack/eslint-config_v4.1.0",
|
|
7
|
+
"date": "Sat, 23 Nov 2024 01:18:55 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Update TSDoc dependencies."
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"version": "4.0.2",
|
|
18
|
+
"tag": "@rushstack/eslint-config_v4.0.2",
|
|
19
|
+
"date": "Thu, 19 Sep 2024 00:11:08 GMT",
|
|
20
|
+
"comments": {
|
|
21
|
+
"patch": [
|
|
22
|
+
{
|
|
23
|
+
"comment": "Fix ESLint broken links"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"dependency": [
|
|
27
|
+
{
|
|
28
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin\" to `0.16.1`"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin-security\" to `0.8.3`"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
4
36
|
{
|
|
5
37
|
"version": "4.0.1",
|
|
6
38
|
"tag": "@rushstack/eslint-config_v4.0.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Change Log - @rushstack/eslint-config
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 23 Nov 2024 01:18:55 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.1.0
|
|
6
|
+
Sat, 23 Nov 2024 01:18:55 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Update TSDoc dependencies.
|
|
11
|
+
|
|
12
|
+
## 4.0.2
|
|
13
|
+
Thu, 19 Sep 2024 00:11:08 GMT
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- Fix ESLint broken links
|
|
4
18
|
|
|
5
19
|
## 4.0.1
|
|
6
20
|
Wed, 14 Aug 2024 22:37:32 GMT
|
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ designed around the the requirements of large teams and projects.
|
|
|
44
44
|
- **Explicit:** The ruleset does not import any "recommended" templates from other ESLint packages. This avoids
|
|
45
45
|
worrying about precedence issues due to import order. It also eliminates confusion caused by files
|
|
46
46
|
overriding/undoing settings from another file. Each rule is configured once, in one
|
|
47
|
-
[easy-to-read file](https://github.com/microsoft/rushstack/blob/main/
|
|
47
|
+
[easy-to-read file](https://github.com/microsoft/rushstack/blob/main/eslint/eslint-config/profile/_common.js).
|
|
48
48
|
|
|
49
49
|
- **Minimal configuration:** To use this ruleset, your **.eslintrc.js** will need to choose one **"profile"**
|
|
50
50
|
and possibly one or two **"mixins"** that cover special cases. Beyond that, our goal is to reduce monorepo
|
|
@@ -268,7 +268,7 @@ module.exports = {
|
|
|
268
268
|
## Links
|
|
269
269
|
|
|
270
270
|
- [CHANGELOG.md](
|
|
271
|
-
https://github.com/microsoft/rushstack/blob/main/
|
|
271
|
+
https://github.com/microsoft/rushstack/blob/main/eslint/eslint-config/CHANGELOG.md) - Find
|
|
272
272
|
out what's new in the latest version
|
|
273
273
|
|
|
274
274
|
`@rushstack/eslint-config` is part of the [Rush Stack](https://rushstack.io/) family of projects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/eslint-config",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "A TypeScript ESLint ruleset designed for large teams and projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@typescript-eslint/typescript-estree": "~8.1.0",
|
|
30
30
|
"eslint-plugin-promise": "~6.1.1",
|
|
31
31
|
"eslint-plugin-react": "~7.33.2",
|
|
32
|
-
"eslint-plugin-tsdoc": "~0.
|
|
32
|
+
"eslint-plugin-tsdoc": "~0.4.0",
|
|
33
33
|
"@rushstack/eslint-patch": "1.10.4",
|
|
34
|
-
"@rushstack/eslint-plugin": "0.16.
|
|
35
|
-
"@rushstack/eslint-plugin-
|
|
36
|
-
"@rushstack/eslint-plugin-
|
|
34
|
+
"@rushstack/eslint-plugin": "0.16.1",
|
|
35
|
+
"@rushstack/eslint-plugin-security": "0.8.3",
|
|
36
|
+
"@rushstack/eslint-plugin-packlets": "0.9.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint": "~8.57.0",
|