Skip to content

Commit

Permalink
Merge pull request #113 from github/fix-add-missing-rules-to-index-js
Browse files Browse the repository at this point in the history
fix: add missing rules to index.js
  • Loading branch information
keithamus committed Jul 20, 2020
2 parents 423a3e1 + f02293b commit 22b3c82
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/index.js
Expand Up @@ -12,7 +12,10 @@ module.exports = {
'no-implicit-buggy-globals': require('./rules/no-implicit-buggy-globals'),
'no-innerText': require('./rules/no-innerText'),
'no-then': require('./rules/no-then'),
'unescaped-html-literal': require('./rules/unescaped-html-literal')
'unescaped-html-literal': require('./rules/unescaped-html-literal'),
'no-useless-passive': require('./rules/no-useless-passive'),
'prefer-observers': require('./rules/prefer-observers'),
'require-passive-events': require('./rules/require-passive-events')
},
configs: {
internal: require('./configs/internal'),
Expand Down

0 comments on commit 22b3c82

Please sign in to comment.