Remove outdated csslint target.
diff --git a/Gruntfile.js b/Gruntfile.js
index 59ea9d2..9deaaff 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -8,15 +8,6 @@
 
   // Project configuration.
   grunt.initConfig({
-    csslint: {
-      options: {
-        csslintrc: '.csslintrc'
-      },
-      src: [
-        'source/_assets/css/*.css',
-      ]
-    },
-
     jshint: {
       options: {
         jshintrc: '.jshintrc'
@@ -28,7 +19,7 @@
     }
   });
 
-  grunt.registerTask('lint', ['csslint', 'jshint']);
+  grunt.registerTask('lint', ['jshint']);
 
   grunt.registerTask('default', ['lint']);
 };