加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Gruntfile.js 867 Bytes
一键复制 编辑 原始数据 按行查看 历史
Evan Carroll 提交于 2018-07-07 14:08 . moved to eslint
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Task configuration.
eslint: {
gruntfile: {
src: 'Gruntfile.js'
},
lib_test: {
src: ['jsfuck.js', 'lib/**/*.js', 'test/**/*.js']
}
},
nodeunit: {
files: ['test/**/*_test.js']
},
watch: {
gruntfile: {
files: '<%= eslint.gruntfile.src %>',
tasks: ['eslint:gruntfile']
},
lib_test: {
files: '<%= eslint.lib_test.src %>',
tasks: ['eslint:lib_test', 'nodeunit']
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks("gruntify-eslint");
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
grunt.registerTask('default', ['eslint', 'nodeunit']);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化