This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/libcloud-site.git
commit de157b3ff6cc026406f07016c12a37767c287073 Author: Tomaz Muraus <to...@tomaz.me> AuthorDate: Tue Aug 1 22:41:36 2023 +0200 Remove outdated csslint target. --- Gruntfile.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 59ea9d2b..9deaaff1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,15 +8,6 @@ module.exports = function(grunt) { // Project configuration. grunt.initConfig({ - csslint: { - options: { - csslintrc: '.csslintrc' - }, - src: [ - 'source/_assets/css/*.css', - ] - }, - jshint: { options: { jshintrc: '.jshintrc' @@ -28,7 +19,7 @@ module.exports = function(grunt) { } }); - grunt.registerTask('lint', ['csslint', 'jshint']); + grunt.registerTask('lint', ['jshint']); grunt.registerTask('default', ['lint']); };