Skip to content
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

Add v8 to the ignorePattern for capitalized-comments #88

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
radix: 'error',

// Disabled for now as it causes too much churn
// TODO: Enable it in the future when I have time to deal with

Check warning on line 202 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 22

Unexpected 'todo' comment: 'TODO: Enable it in the future when I...'

Check warning on line 202 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 20

Unexpected 'todo' comment: 'TODO: Enable it in the future when I...'

Check warning on line 202 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 18

Unexpected 'todo' comment: 'TODO: Enable it in the future when I...'
// the churn and the rule is stable and has an autofixer.
// Still doesn't have a fixer as of ESLint 7.24.0.
// 'require-unicode-regexp': 'error',
Expand All @@ -217,7 +217,7 @@
'no-restricted-globals': [
'error',
'event',
// TODO: Enable this in 2025.

Check warning on line 220 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 22

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'

Check warning on line 220 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 20

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'

Check warning on line 220 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 18

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'
// {
// name: 'Buffer',
// message: 'Use Uint8Array instead. See: https://sindresorhus.com/blog/goodbye-nodejs-buffer',
Expand Down Expand Up @@ -261,7 +261,7 @@
'sys',
'querystring',
'colors',
// TODO: Enable this in 2025.

Check warning on line 264 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 22

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'

Check warning on line 264 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 20

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'

Check warning on line 264 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 18

Unexpected 'todo' comment: 'TODO: Enable this in 2025.'
// {
// name: 'buffer',
// message: 'Use Uint8Array instead. See: https://sindresorhus.com/blog/goodbye-nodejs-buffer',
Expand Down Expand Up @@ -302,7 +302,7 @@
{
// You can also ignore this rule by wrapping the first word in quotes.
// c8 => https://github.com/bcoe/c8
ignorePattern: /pragma|ignore|prettier-ignore|webpack\w+:|c8|type-coverage:/.source,
ignorePattern: /pragma|ignore|prettier-ignore|webpack\w+:|c8|v8|type-coverage:/.source,
ignoreInlineComments: true,
ignoreConsecutiveComments: true,
},
Expand Down Expand Up @@ -659,7 +659,7 @@
{
// `array` is disabled because it forces destructuring on
// stupid stuff like `foo.bar = process.argv[2];`
// TODO: Open ESLint issue about this

Check warning on line 662 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 22

Unexpected 'todo' comment: 'TODO: Open ESLint issue about this'

Check warning on line 662 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 20

Unexpected 'todo' comment: 'TODO: Open ESLint issue about this'

Check warning on line 662 in index.js

View workflow job for this annotation

GitHub Actions / Node.js 18

Unexpected 'todo' comment: 'TODO: Open ESLint issue about this'
VariableDeclarator: {
array: false,
object: true,
Expand Down