Skip to content

Commit 8bc53d1

Browse files
cjihrigtargos
authored andcommittedApr 22, 2020
tools: update ESLint to 7.0.0-alpha.3
Update ESLint to 7.0.0-alpha.3 PR-URL: #32533 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 32ab30c commit 8bc53d1

File tree

109 files changed

+13357
-4845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+13357
-4845
lines changed
 

‎tools/eslint-rules/crypto-check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module.exports = function(context) {
7171
if (missingCheckNodes.length > 0) {
7272
requireNodes.forEach((requireNode) => {
7373
const beforeAllChecks = missingCheckNodes.every((checkNode) => {
74-
return requireNode.start < checkNode.start;
74+
return requireNode.range[0] < checkNode.range[0];
7575
});
7676

7777
if (beforeAllChecks) {

‎tools/node_modules/eslint/README.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.