Prevent variables used in pugjs to be incorrectly marked as unused
The following patterns are considered warnings:
var Hello = require('./Hello')
The following patterns are not considered warnings:
var Hello = require('./Hello')
pug`Hello(name="John")`
If you are not using pug or if you do not use the no-unused-vars rule then you can disable this rule.