eslint 7.17.0 → 7.18.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 +22 -0
- package/README.md +2 -1
- package/lib/init/config-initializer.js +2 -1
- package/lib/rules/complexity.js +7 -1
- package/lib/rules/no-extra-parens.js +16 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
v7.18.0 - January 15, 2021
|
2
|
+
|
3
|
+
* [`e3264b2`](https://github.com/eslint/eslint/commit/e3264b26a625d926a1ea96df1c4b643af5c3797c) Upgrade: @eslint/eslintrc to improve error message for invalid extends (#14009) (Milos Djermanovic)
|
4
|
+
* [`f17c3c3`](https://github.com/eslint/eslint/commit/f17c3c371789ffa84f0cda57101e8193899adbe6) Update: check logical assignment operators in the complexity rule (#13979) (Milos Djermanovic)
|
5
|
+
* [`672deb0`](https://github.com/eslint/eslint/commit/672deb057a14a7acad8c669189870009f1edb8a6) Docs: fix no-invalid-regexp docs regarding ecmaVersion (#13991) (Milos Djermanovic)
|
6
|
+
* [`179a910`](https://github.com/eslint/eslint/commit/179a910b32e853bc12a9dd71f7c10e762cbeac44) Fix: --init crash on question to upgrade/downgrade ESLint (fixes #13978) (#13995) (Milos Djermanovic)
|
7
|
+
* [`292b1c0`](https://github.com/eslint/eslint/commit/292b1c0017bc442d399f67e01d699c59e6b71453) Fix: no-extra-parens false positive with `let` identifier in for-loop (#13981) (Milos Djermanovic)
|
8
|
+
* [`de61f94`](https://github.com/eslint/eslint/commit/de61f9444cf58a4d70e126ab3d10bf20851de7c9) Sponsors: Sync README with website (ESLint Jenkins)
|
9
|
+
* [`9250d16`](https://github.com/eslint/eslint/commit/9250d167ceb5684669eabe93dae326e33f0684f2) Upgrade: Bump lodash to fix security issue (#13993) (Frederik Prijck)
|
10
|
+
* [`75fea9b`](https://github.com/eslint/eslint/commit/75fea9bcdd3dde5a07e0089d9011a4df518cdbe3) Sponsors: Sync README with website (ESLint Jenkins)
|
11
|
+
* [`f2687e7`](https://github.com/eslint/eslint/commit/f2687e71f9e2a2773f821c4dc1a02abe95b97df4) Docs: update space-in-parens related rules (#13985) (Chris Brody)
|
12
|
+
* [`4a38bbe`](https://github.com/eslint/eslint/commit/4a38bbe81b4b29ca1a4e62d0a0cc8d525455b063) Docs: space-in-parens examples with no arguments etc. (#13987) (Chris Brody)
|
13
|
+
* [`3e49169`](https://github.com/eslint/eslint/commit/3e491698687aa08b3b798cee0931f0872ca1bc55) Sponsors: Sync README with website (ESLint Jenkins)
|
14
|
+
* [`c5bf1f2`](https://github.com/eslint/eslint/commit/c5bf1f2150a9fbbb9e74c04808dc3bfeda1ed321) Sponsors: Sync README with website (ESLint Jenkins)
|
15
|
+
* [`98a729c`](https://github.com/eslint/eslint/commit/98a729c9def54cee9e5478e75e8bd6f28167d5e8) Sponsors: Sync README with website (ESLint Jenkins)
|
16
|
+
* [`e83a696`](https://github.com/eslint/eslint/commit/e83a6962b51b05c2ddfe42b0748b405d515eeb9d) Sponsors: Sync README with website (ESLint Jenkins)
|
17
|
+
* [`78cb483`](https://github.com/eslint/eslint/commit/78cb48345c725e9f90fd0e631c476802244df4a4) Chore: test `foo( )` with space-in-parens option "always" (#13986) (Chris Brody)
|
18
|
+
* [`f6948f6`](https://github.com/eslint/eslint/commit/f6948f6bdc763dca0787bb2786bc9f6f9ed88f43) Docs: Update semantic versioning policy (#13970) (Nicholas C. Zakas)
|
19
|
+
* [`0688212`](https://github.com/eslint/eslint/commit/068821248e2d2eff11152f270102d537d8fa8126) Sponsors: Sync README with website (ESLint Jenkins)
|
20
|
+
* [`aeba5e5`](https://github.com/eslint/eslint/commit/aeba5e5e6062095a06d9b867d7e7ee75422f25b9) Chore: fix typo (#13975) (Nitin Kumar)
|
21
|
+
* [`4ee1134`](https://github.com/eslint/eslint/commit/4ee113414bdcbea240a5d9db27da6a10df472005) Sponsors: Sync README with website (ESLint Jenkins)
|
22
|
+
|
1
23
|
v7.17.0 - January 1, 2021
|
2
24
|
|
3
25
|
* [`e128e77`](https://github.com/eslint/eslint/commit/e128e775e9fa116a0ad68a071f1f0997589f8cd4) Update: check logical assignment in no-constant-condition (#13946) (Milos Djermanovic)
|
package/README.md
CHANGED
@@ -158,6 +158,7 @@ ESLint follows [semantic versioning](https://semver.org). However, due to the na
|
|
158
158
|
* A bug fix in a rule that results in ESLint reporting more linting errors.
|
159
159
|
* A new rule is created.
|
160
160
|
* A new option to an existing rule that does not result in ESLint reporting more linting errors by default.
|
161
|
+
* A new addition to an existing rule to support a newly-added language feature (within the last 12 months) that will result in ESLint reporting more linting errors by default.
|
161
162
|
* An existing rule is deprecated.
|
162
163
|
* A new CLI capability is created.
|
163
164
|
* New capabilities to the public API are added (new classes, new methods, new arguments to existing methods, etc.).
|
@@ -262,7 +263,7 @@ The following companies, organizations, and individuals support ESLint's ongoing
|
|
262
263
|
<p><a href="https://automattic.com"><img src="https://images.opencollective.com/photomatt/ff91f0b/logo.png" alt="Automattic" height="undefined"></a></p><h3>Gold Sponsors</h3>
|
263
264
|
<p><a href="https://google.com/chrome"><img src="https://images.opencollective.com/chrome/dc55bd4/logo.png" alt="Chrome's Web Framework & Tools Performance Fund" height="96"></a> <a href="https://www.shopify.com"><img src="https://images.opencollective.com/shopify/e780cd4/logo.png" alt="Shopify" height="96"></a> <a href="https://www.salesforce.com"><img src="https://images.opencollective.com/salesforce/ca8f997/logo.png" alt="Salesforce" height="96"></a> <a href="https://www.airbnb.com/"><img src="https://images.opencollective.com/airbnb/d327d66/logo.png" alt="Airbnb" height="96"></a> <a href="https://aka.ms/microsoftfossfund"><img src="https://avatars1.githubusercontent.com/u/67931232?u=7fddc652a464d7151b97e8f108392af7d54fa3e8&v=4" alt="Microsoft FOSS Fund Sponsorships" height="96"></a></p><h3>Silver Sponsors</h3>
|
264
265
|
<p><a href="https://liftoff.io/"><img src="https://images.opencollective.com/liftoff/5c4fa84/logo.png" alt="Liftoff" height="64"></a> <a href="https://www.ampproject.org/"><img src="https://images.opencollective.com/amp/c8a3b25/logo.png" alt="AMP Project" height="64"></a></p><h3>Bronze Sponsors</h3>
|
265
|
-
<p><a href="https://
|
266
|
+
<p><a href="https://streamat.se"><img src="https://images.opencollective.com/streamat/46890db/logo.png" alt="Streamat" height="32"></a> <a href="https://thestandarddaily.com/"><img src="https://images.opencollective.com/eric-watson/db4e598/avatar.png" alt="The Standard Daily" height="32"></a> <a href="https://writersperhour.com"><img src="https://images.opencollective.com/writersperhour/5787d4b/logo.png" alt="Writers Per Hour" height="32"></a> <a href="https://www.betacalendars.com/february-calendar.html"><img src="https://images.opencollective.com/betacalendars/9334b33/logo.png" alt="February 2021 calendar" height="32"></a> <a href="https://buy.fineproxy.org/eng/"><img src="https://images.opencollective.com/buy-fineproxy-org/b282e39/logo.png" alt="Buy.Fineproxy.Org" height="32"></a> <a href="https://www.crosswordsolver.org/anagram-solver/"><img src="https://images.opencollective.com/anagram-solver/2666271/logo.png" alt="Anagram Solver" height="32"></a> <a href="null"><img src="https://images.opencollective.com/bugsnag-stability-monitoring/c2cef36/logo.png" alt="Bugsnag Stability Monitoring" height="32"></a> <a href="https://mixpanel.com"><img src="https://images.opencollective.com/mixpanel/cd682f7/logo.png" alt="Mixpanel" height="32"></a> <a href="https://www.vpsserver.com"><img src="https://images.opencollective.com/vpsservercom/logo.png" alt="VPS Server" height="32"></a> <a href="https://icons8.com"><img src="https://images.opencollective.com/icons8/7fa1641/logo.png" alt="Icons8: free icons, photos, illustrations, and music" height="32"></a> <a href="https://discordapp.com"><img src="https://images.opencollective.com/discordapp/7e3d9a9/logo.png" alt="Discord" height="32"></a> <a href="https://themeisle.com"><img src="https://images.opencollective.com/themeisle/d5592fe/logo.png" alt="ThemeIsle" height="32"></a> <a href="https://www.firesticktricks.com"><img src="https://images.opencollective.com/fire-stick-tricks/b8fbe2c/logo.png" alt="Fire Stick Tricks" height="32"></a></p>
|
266
267
|
<!--sponsorsend-->
|
267
268
|
|
268
269
|
## <a name="technology-sponsors"></a>Technology Sponsors
|
@@ -565,7 +565,8 @@ function promptUser() {
|
|
565
565
|
{
|
566
566
|
type: "toggle",
|
567
567
|
name: "installESLint",
|
568
|
-
message(
|
568
|
+
message() {
|
569
|
+
const { answers } = this.state;
|
569
570
|
const verb = semver.ltr(answers.localESLintVersion, answers.requiredESLintVersionRange)
|
570
571
|
? "upgrade"
|
571
572
|
: "downgrade";
|
package/lib/rules/complexity.js
CHANGED
@@ -153,7 +153,13 @@ module.exports = {
|
|
153
153
|
IfStatement: increaseComplexity,
|
154
154
|
SwitchCase: increaseSwitchComplexity,
|
155
155
|
WhileStatement: increaseComplexity,
|
156
|
-
DoWhileStatement: increaseComplexity
|
156
|
+
DoWhileStatement: increaseComplexity,
|
157
|
+
|
158
|
+
AssignmentExpression(node) {
|
159
|
+
if (astUtils.isLogicalAssignmentOperator(node.operator)) {
|
160
|
+
increaseComplexity();
|
161
|
+
}
|
162
|
+
}
|
157
163
|
};
|
158
164
|
|
159
165
|
}
|
@@ -895,6 +895,22 @@ module.exports = {
|
|
895
895
|
}
|
896
896
|
|
897
897
|
if (node.init) {
|
898
|
+
|
899
|
+
if (node.init.type !== "VariableDeclaration") {
|
900
|
+
const firstToken = sourceCode.getFirstToken(node.init, astUtils.isNotOpeningParenToken);
|
901
|
+
|
902
|
+
if (
|
903
|
+
firstToken.value === "let" &&
|
904
|
+
astUtils.isOpeningBracketToken(
|
905
|
+
sourceCode.getTokenAfter(firstToken, astUtils.isNotClosingParenToken)
|
906
|
+
)
|
907
|
+
) {
|
908
|
+
|
909
|
+
// ForStatement#init expression cannot start with `let[`.
|
910
|
+
tokensToIgnore.add(firstToken);
|
911
|
+
}
|
912
|
+
}
|
913
|
+
|
898
914
|
startNewReportsBuffering();
|
899
915
|
|
900
916
|
if (hasExcessParens(node.init)) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "eslint",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.18.0",
|
4
4
|
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
|
5
5
|
"description": "An AST-based pattern checker for JavaScript.",
|
6
6
|
"bin": {
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"bugs": "https://github.com/eslint/eslint/issues/",
|
48
48
|
"dependencies": {
|
49
49
|
"@babel/code-frame": "^7.0.0",
|
50
|
-
"@eslint/eslintrc": "^0.
|
50
|
+
"@eslint/eslintrc": "^0.3.0",
|
51
51
|
"ajv": "^6.10.0",
|
52
52
|
"chalk": "^4.0.0",
|
53
53
|
"cross-spawn": "^7.0.2",
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"js-yaml": "^3.13.1",
|
72
72
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
73
73
|
"levn": "^0.4.1",
|
74
|
-
"lodash": "^4.17.
|
74
|
+
"lodash": "^4.17.20",
|
75
75
|
"minimatch": "^3.0.4",
|
76
76
|
"natural-compare": "^1.4.0",
|
77
77
|
"optionator": "^0.9.1",
|