Skip to content

Commit

Permalink
Fix eslint-plugin-prettier
Browse files Browse the repository at this point in the history
Insert ending comma as suggested by eslint-plugin-prettier
  • Loading branch information
mingz-work authored and pedronauck committed Apr 16, 2018
1 parent 3cad5af commit 1404d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const UrlPattern = require('url-pattern')

const patternOpts = {
segmentNameCharset: 'a-zA-Z0-9_-',
segmentValueCharset: 'a-zA-Z0-9@.+-_'
segmentValueCharset: 'a-zA-Z0-9@.+-_',
}

const isPattern = pattern => pattern instanceof UrlPattern
Expand Down

0 comments on commit 1404d8c

Please sign in to comment.