Skip to content

Commit

Permalink
Ignore comments and URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante authored Jul 28, 2024
1 parent 1962022 commit 79f17ef
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,11 +409,18 @@ module.exports = {
'max-depth': 'warn',
'max-len': [
'warn',
200,
{
code: 200,
ignoreComments: true,
ignoreUrls: true
},
],

Check failure on line 417 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 16

Missing trailing comma

Check failure on line 417 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 14

Missing trailing comma

Check failure on line 417 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 12

Missing trailing comma
'max-lines': [
'warn',
2000,
{
max: 2000,
skipComments: true,
},
],
'max-nested-callbacks': [
'warn',
Expand Down

0 comments on commit 79f17ef

Please sign in to comment.