-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BREAKING: Bump all ESLint dependencies #351
Changes from all commits
9786db8
69ba503
3a82742
7e7a6f6
b6b8a97
f704d16
c512e92
7bc6519
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,12 +98,6 @@ module.exports = { | |
}, | ||
], | ||
'lines-between-class-members': 'error', | ||
'max-statements-per-line': [ | ||
'error', | ||
{ | ||
max: 1, | ||
}, | ||
], | ||
Comment on lines
-101
to
-106
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Our validation script was complaining about this being handled by Prettier. |
||
'new-cap': [ | ||
'error', | ||
{ | ||
|
@@ -392,7 +386,13 @@ module.exports = { | |
'jsdoc/require-returns-type': 'error', | ||
'jsdoc/require-yields': 'error', | ||
'jsdoc/require-yields-check': 'error', | ||
'jsdoc/tag-lines': 'error', | ||
'jsdoc/tag-lines': [ | ||
'error', | ||
'any', | ||
{ | ||
startLines: 1, | ||
}, | ||
], | ||
Comment on lines
+389
to
+395
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AFAIK this matches the previous behaviour, where one line between the description and the first tag is required. |
||
'jsdoc/valid-types': 'error', | ||
|
||
'promise/no-multiple-resolved': 'error', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure why we used this range before, but I replaced it with the latest (Node.js 16-compatible) version. I can revert if there's a good reason to have this range.
cc @legobeat
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Context and previous discussion: