Loading "Gruntfile.js" tasks...ERROR >> SyntaxError: Unexpected identifier, Task "default" not found

Loading "Gruntfile.js" tasks...ERROR >> SyntaxError: Unexpected identifier, Task "default" not found

当我在我的终端中 运行 g运行t 时,我收到了这条错误消息,谁能告诉我为什么? 我收到错误 message:Loading "Gruntfile.js" 任务...错误

SyntaxError: Unexpected identifier Warning: Task "default" not found. Use --force to continue.

module.exports = function(grunt){
require('load-grunt-tasks')(grunt);

var config = grunt.file.readYAML('Gruntconfig.yml');

grunt.initConfig({
    sass:{
        dist:{              
            src: config.scssDir+'style.scss',
            dest: config.cssDir+'style.css'
        }
    },
    concat:{
        dist:{
            src: config.jsSrcDir+'*.js',
            dest: config.jsConcatDir+'app.js'
        }
    },
    jshint:{
        options:{
            "eqeqeq": true
        }
        all:[
            'Gruntfile.js',
            config.jsSrcDir+"*.js"
        ]
    },
    watch:{
        sass:{
            files: config.scssDir+'**/*.scss',
            tasks:['sass']
        }
    }
});

grunt.registerTask('default',['jshint',
    'sass','concat','watch']);};

表示无法编译gruntfile中的json。

您缺少一个逗号

jshint:{
    options:{
        "eqeqeq": true
    }<--- add comma here
    all:[
        'Gruntfile.js',
        config.jsSrcDir+"*.js"
    ]
},