123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = function (grunt) {
- grunt.config.merge({
- checkDependencies: {
- options: {
- install: true
- },
- bower: {
- options: {
- packageManager: "bower"
- }
- },
- npm: {}
- },
- eslint: {
- options: {
- rules: {
- "semi": [2, "never"],
- "curly": [2, "multi"],
- "strict": [2, "never"],
- "no-multi-spaces": 0,
- "no-new": 0,
- "no-shadow": 0
- }
- },
- sources: {
- src: ["app.js", "!Gruntfile.js", "lib/**/*.js"]
- },
- grunt: {
- src: ["Gruntfile.js", "tasks/*.js"]
- }
- }
- })
- grunt.loadNpmTasks("grunt-check-dependencies")
- grunt.loadNpmTasks("grunt-eslint")
- }
|