poppinlp/grunt-htmlhint-plus

View on GitHub
rules/foobar-exists-as-function.js

Summary

Maintainability
A
0 mins
Test Coverage
var foobarExists = require('./foobar-exists');

module.exports = function ruleAsFunction(HTMLHint) {
    HTMLHint.addRule({
        id: 'foobar-exists-as-function',
        description: foobarExists.description,
        init: foobarExists.init,
    });
}