This rule helps locate potential ReferenceErrors resulting from misspellings or missing components.
The following patterns are considered warnings:
pug`h1= title`
pug`Hello(name="John")`
The following patterns are not considered warnings:
var title = 'My Title'
pug`h1= title`
var Hello = require('./Hello')
pug`Hello(name="John")`
If you are not using Pug then you can disable this rule.