eslint-plugin-extjs
Version:
ESLint rules for projects using the ExtJS framework.
20 lines (18 loc) • 407 B
JavaScript
module.exports = function(grunt) {
for (var key in grunt.file.readJSON("package.json").devDependencies) {
if (key !== "grunt" && key !== "grunt-cli" && key.indexOf("grunt") === 0) {
grunt.loadNpmTasks(key);
}
}
grunt.initConfig({
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/lib/**/*.js']
}
}
});
grunt.registerTask('test', 'mochaTest:test');
};