AdminLTE/build/grunt-tasks/bootlint.js

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']
};
};