Skip to content

Commit

Permalink
fix(check-indentation): Loosen tag pattern to allowable jsdoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Oct 3, 2019
1 parent 04d84a1 commit 326d2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/checkIndentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default iterateJsdoc(({
properties: {
excludeTags: {
items: {
pattern: '^[a-zA-Z]+$',
pattern: '^\\S+$',
type: 'string',
},
type: 'array',
Expand Down

0 comments on commit 326d2b5

Please sign in to comment.