remove jshint

This commit is contained in:
Wang Qiu
2013-08-17 18:31:06 +08:00
parent b9f315f0a6
commit acf56056ed
3 changed files with 0 additions and 36 deletions

View File

@@ -1,15 +0,0 @@
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"unused": true,
"boss": true,
"eqnull": true,
"node": true,
"es5": true
}

View File

@@ -5,17 +5,6 @@ module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
source: ['src/**/*.coffee', 'test/**/*.coffee'],
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntfile: {
src: 'Gruntfile.js'
},
lib: {
src: ['lib/**/*.js']
}
},
nodeunit: {
all: ['test/**/*_test.js']
},
@@ -38,10 +27,6 @@ module.exports = function(grunt) {
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
coffee: {
files: '<%= source %>',
tasks: ['coffee']
@@ -49,16 +34,11 @@ module.exports = function(grunt) {
nodeunit: {
files: '<%= source %>',
tasks: ['coffee', 'nodeunit']
},
lib: {
files: '<%= jshint.lib.src %>',
tasks: ['jshint:lib']
}
},
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-nodeunit');

View File

@@ -36,7 +36,6 @@
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.0",