Added very basic jshint config
This commit is contained in:
parent
114732ec25
commit
aebc7ce0d2
1
.jshintignore
Normal file
1
.jshintignore
Normal file
@ -0,0 +1 @@
|
|||||||
|
tests/vendor/*.js
|
5
.jshintrc
Normal file
5
.jshintrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"bitwise": true,
|
||||||
|
"indent": 2,
|
||||||
|
"quotmark": "single"
|
||||||
|
}
|
15
Gruntfile.js
15
Gruntfile.js
@ -26,6 +26,18 @@ module.exports = function (grunt) {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
jshint: {
|
||||||
|
options: {
|
||||||
|
jshintrc: true
|
||||||
|
},
|
||||||
|
code: {
|
||||||
|
src: ["src/js/**/*.js"]
|
||||||
|
},
|
||||||
|
tests: {
|
||||||
|
src: ["tests/**/*.js"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
sass: {
|
sass: {
|
||||||
dist: {
|
dist: {
|
||||||
options: {
|
options: {
|
||||||
@ -145,6 +157,7 @@ module.exports = function (grunt) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
grunt.loadNpmTasks("grunt-contrib-concat")
|
grunt.loadNpmTasks("grunt-contrib-concat")
|
||||||
|
grunt.loadNpmTasks("grunt-contrib-jshint")
|
||||||
grunt.loadNpmTasks("grunt-contrib-qunit")
|
grunt.loadNpmTasks("grunt-contrib-qunit")
|
||||||
grunt.loadNpmTasks("grunt-contrib-requirejs")
|
grunt.loadNpmTasks("grunt-contrib-requirejs")
|
||||||
grunt.loadNpmTasks("grunt-contrib-uglify")
|
grunt.loadNpmTasks("grunt-contrib-uglify")
|
||||||
@ -156,5 +169,5 @@ module.exports = function (grunt) {
|
|||||||
|
|
||||||
grunt.registerTask("compile", ["requirejs", "sass:dev", "concat"])
|
grunt.registerTask("compile", ["requirejs", "sass:dev", "concat"])
|
||||||
grunt.registerTask("minify", ["uglify", "sass:dist"])
|
grunt.registerTask("minify", ["uglify", "sass:dist"])
|
||||||
grunt.registerTask("test", ["qunit"])
|
grunt.registerTask("test", ["qunit", "jshint"])
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
"grunt": "^0.4.5",
|
"grunt": "^0.4.5",
|
||||||
"grunt-cli": "^0.1.13",
|
"grunt-cli": "^0.1.13",
|
||||||
"grunt-contrib-concat": "^0.4.0",
|
"grunt-contrib-concat": "^0.4.0",
|
||||||
|
"grunt-contrib-jshint": "^0.10.0",
|
||||||
"grunt-contrib-nodeunit": "~0.3.3",
|
"grunt-contrib-nodeunit": "~0.3.3",
|
||||||
"grunt-contrib-qunit": "~0.4.0",
|
"grunt-contrib-qunit": "~0.4.0",
|
||||||
"grunt-contrib-requirejs": "^0.4.4",
|
"grunt-contrib-requirejs": "^0.4.4",
|
||||||
|
Loading…
Reference in New Issue
Block a user