Skip to content

Commit 326d2b5

Browse files
committed
fix(check-indentation): Loosen tag pattern to allowable jsdoc tags
See syavorsky/comment-parser#53 for details.
1 parent 04d84a1 commit 326d2b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/checkIndentation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default iterateJsdoc(({
4545
properties: {
4646
excludeTags: {
4747
items: {
48-
pattern: '^[a-zA-Z]+$',
48+
pattern: '^\\S+$',
4949
type: 'string',
5050
},
5151
type: 'array',

0 commit comments

Comments
 (0)