Skip to content

Commit 11d9e1b

Browse files
committed
fix: Update regex pattern for disallowed comments
1 parent ebfd1a5 commit 11d9e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ configs.recommended = {
3030
'no-comments/disallowComments': [
3131
'error',
3232
{
33-
allow: ['^/\\*\\*(?:[\\s\\S]*?)\\*/$', 'eslint-disable', 'global', 'TODO', 'FIXME', 'NOTE', 'DEBUG'],
33+
allow: ['^\\*\\*', 'eslint-disable', 'global', 'TODO', 'FIXME', 'NOTE', 'DEBUG'],
3434
},
3535
],
3636

0 commit comments

Comments
 (0)