|
@@ -124,6 +124,15 @@ module.exports = function (grunt) {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ csslint: {
|
|
|
+ options: {
|
|
|
+ csslintrc: 'build/less/.csslintrc'
|
|
|
+ },
|
|
|
+ dist: [
|
|
|
+ 'dist/css/AdminLTE.css',
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -148,6 +157,8 @@ module.exports = function (grunt) {
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
|
+
|
|
|
+ grunt.loadNpmTasks('grunt-contrib-csslint');
|
|
|
|
|
|
|
|
|
grunt.registerTask('default', ['watch']);
|