Skip to content

Commit

Permalink
Added exact as valid modifier (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
mokkabonna authored and michalsnik committed Dec 2, 2017
1 parent deedd7a commit b8a325d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/valid-v-on.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const utils = require('../utils')
const VALID_MODIFIERS = new Set([
'stop', 'prevent', 'capture', 'self', 'ctrl', 'shift', 'alt', 'meta',
'native', 'once', 'left', 'right', 'middle', 'passive', 'esc', 'tab',
'enter', 'space', 'up', 'left', 'right', 'down', 'delete'
'enter', 'space', 'up', 'left', 'right', 'down', 'delete', 'exact'
])
const VERB_MODIFIERS = new Set([
'stop', 'prevent'
Expand Down

0 comments on commit b8a325d

Please sign in to comment.