hopglass/tasks/linting.js

36 lines
683 B
JavaScript
Raw Normal View History

2015-03-29 14:43:02 +02:00
module.exports = function (grunt) {
grunt.config.merge({
checkDependencies: {
options: {
install: true
},
bower: {
options: {
packageManager: "bower"
}
},
npm: {}
},
eslint: {
options: {
2017-03-17 03:19:03 +01:00
extends: [
"defaults/configurations/eslint"
],
2015-03-29 16:14:10 +02:00
rules: {
2017-03-17 03:19:03 +01:00
"semi": [2, "always"],
"no-undef": 0
2015-03-29 14:43:02 +02:00
}
},
sources: {
2015-03-30 03:20:43 +02:00
src: ["app.js", "!Gruntfile.js", "lib/**/*.js"]
2015-03-29 14:43:02 +02:00
},
grunt: {
src: ["Gruntfile.js", "tasks/*.js"]
}
}
});
2015-03-29 14:43:02 +02:00
grunt.loadNpmTasks("grunt-check-dependencies");
grunt.loadNpmTasks("grunt-eslint");
};