Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-css-flip.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2016-02-20 12:49:28 +0300
committerXhmikosR <xhmikosr@gmail.com>2016-03-07 12:59:58 +0300
commit56e54ca9bb291e3dcee3451c8c404c398485af79 (patch)
tree611fe23e2c29357095df0dacd53949f21ce7dbca /Gruntfile.js
parent0fdccc1bd87bb207d35a470cfa6311a953ac4efe (diff)
Remove JSHint and JSCS.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js24
1 files changed, 1 insertions, 23 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b240dbf..8810d4b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -12,17 +12,6 @@ module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
- jshint: {
- options: {
- jshintrc: '.jshintrc'
- },
- all: [
- 'Gruntfile.js',
- 'tasks/*.js',
- '<%= nodeunit.tests %>'
- ]
- },
-
eslint: {
options: {
config: '.eslintrc'
@@ -34,17 +23,6 @@ module.exports = function (grunt) {
]
},
- jscs: {
- options: {
- config: '.jscsrc'
- },
- all: [
- 'Gruntfile.js',
- 'tasks/*.js',
- '<%= nodeunit.tests %>'
- ]
- },
-
// Before generating any new files, remove any previously-created files.
clean: {
tests: ['tmp']
@@ -81,7 +59,7 @@ module.exports = function (grunt) {
// These plugins provide necessary tasks.
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
- grunt.registerTask('lint', ['jshint', 'eslint', 'jscs']);
+ grunt.registerTask('lint', ['eslint']);
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.