AdminLTE/build/grunt/bootlint.js

13 lines
219 B
JavaScript
Raw Normal View History

2016-06-23 16:54:05 +02:00
// Validate Bootstrap HTML
'use strict';
module.exports = function (grunt) {
return {
options: {
relaxerror: ['W005']
},
// files: ['pages/**/*.html', '*.html']
files: ['starter.html']
};
};