AdminLTE/build/grunt/bootlint.js
2016-07-02 11:43:17 -04:00

13 lines
219 B
JavaScript

// Validate Bootstrap HTML
'use strict';
module.exports = function (grunt) {
return {
options: {
relaxerror: ['W005']
},
// files: ['pages/**/*.html', '*.html']
files: ['starter.html']
};
};