AdminLTE/grunt-tasks/bootlint.js

11 lines
160 B
JavaScript

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