build: Remove grunt-contrib-csslint

This is no longer needed and useless since we switched all css files to
less.

Change-Id: I6c0ea55c236be94f3b612de2470585616d831dd8
This commit is contained in:
Paladox 2016-01-17 21:12:11 +00:00 committed by James D. Forrester
parent 96f1c4f2f4
commit 7e0a51b37f
2 changed files with 1 additions and 9 deletions

View file

@ -1,6 +1,5 @@
/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-csslint' );
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
@ -26,12 +25,6 @@ module.exports = function ( grunt ) {
'!tests/externals/**'
]
},
csslint: {
options: {
csslintrc: '.csslintrc'
},
all: 'modules/**/*.css'
},
banana: {
all: 'i18n/'
},
@ -51,7 +44,7 @@ module.exports = function ( grunt ) {
}
} );
grunt.registerTask( 'lint', [ 'jshint', 'jscs', 'csslint', 'jsonlint', 'banana' ] );
grunt.registerTask( 'lint', [ 'jshint', 'jscs', 'jsonlint', 'banana' ] );
grunt.registerTask( 'test', 'lint' );
grunt.registerTask( 'default', 'test' );
};

View file

@ -9,7 +9,6 @@
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-csslint": "0.4.0",
"grunt-contrib-jshint": "0.12.0",
"grunt-contrib-watch": "0.6.1",
"grunt-banana-checker": "0.4.0",