diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index 2c40c44..0000000 --- a/.jshintrc +++ /dev/null @@ -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 -} diff --git a/Gruntfile.js b/Gruntfile.js index 1833479..e3f9afc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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'); diff --git a/package.json b/package.json index 075a930..24fdeaa 100644 --- a/package.json +++ b/package.json @@ -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",