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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ndung'u <kevgathuku@gmail.com>2019-05-06 07:26:50 +0300
committerKevin Ndung'u <kevgathuku@gmail.com>2019-05-06 07:28:56 +0300
commit2ca1d1d5b556e1d0337e250328f635547d8728ff (patch)
treecd88d7e3dda2bb67ff4fed8188d78771d852b305 /Gruntfile.js
parent7dd24405c80841eb25af821aefa9055740271f2c (diff)
Remove JSCS
Signed-off-by: Kevin Ndung'u <kevgathuku@gmail.com>
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 68578559c..b30546ae3 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -19,12 +19,6 @@ module.exports = function(grunt) {
all: ['Gruntfile.js', 'js/*.js', 'js/models/*.js', 'js/views/*.js',
'!js/build/build.js', '!js/webpack.*.js']
},
- jscs: {
- src: '<%= jshint.all %>',
- options: {
- config: '.jscsrc'
- }
- },
karma: {
unit: {
configFile: 'karma.conf.js',
@@ -37,8 +31,6 @@ module.exports = function(grunt) {
}
}
});
- // jscs
- grunt.loadNpmTasks('grunt-jscs');
// jshint
grunt.loadNpmTasks('grunt-contrib-jshint');
@@ -47,5 +39,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-karma');
// Default task
- grunt.registerTask('default', ['jscs', 'jshint', 'karma:continuous']);
+ grunt.registerTask('default', ['jshint', 'karma:continuous']);
};