@rushstack/eslint-config 4.0.0 → 4.0.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 +32 -0
- package/CHANGELOG.md +13 -1
- package/README.md +2 -2
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/eslint-config",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "4.0.2",
|
|
6
|
+
"tag": "@rushstack/eslint-config_v4.0.2",
|
|
7
|
+
"date": "Thu, 19 Sep 2024 00:11:08 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Fix ESLint broken links"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin\" to `0.16.1`"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin-security\" to `0.8.3`"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"version": "4.0.1",
|
|
26
|
+
"tag": "@rushstack/eslint-config_v4.0.1",
|
|
27
|
+
"date": "Wed, 14 Aug 2024 22:37:32 GMT",
|
|
28
|
+
"comments": {
|
|
29
|
+
"dependency": [
|
|
30
|
+
{
|
|
31
|
+
"comment": "Updating dependency \"@rushstack/eslint-plugin\" to `0.16.0`"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
4
36
|
{
|
|
5
37
|
"version": "4.0.0",
|
|
6
38
|
"tag": "@rushstack/eslint-config_v4.0.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
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 Sep 2024 00:11:08 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.0.2
|
|
6
|
+
Thu, 19 Sep 2024 00:11:08 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Fix ESLint broken links
|
|
11
|
+
|
|
12
|
+
## 4.0.1
|
|
13
|
+
Wed, 14 Aug 2024 22:37:32 GMT
|
|
14
|
+
|
|
15
|
+
_Version update only_
|
|
4
16
|
|
|
5
17
|
## 4.0.0
|
|
6
18
|
Tue, 13 Aug 2024 18:17:05 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.0.2",
|
|
4
4
|
"description": "A TypeScript ESLint ruleset designed for large teams and projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"eslint-plugin-react": "~7.33.2",
|
|
32
32
|
"eslint-plugin-tsdoc": "~0.3.0",
|
|
33
33
|
"@rushstack/eslint-patch": "1.10.4",
|
|
34
|
-
"@rushstack/eslint-plugin
|
|
35
|
-
"@rushstack/eslint-plugin-security": "0.8.
|
|
36
|
-
"@rushstack/eslint-plugin": "0.
|
|
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",
|