Files
appium/grunt.js
2013-01-12 11:28:19 -08:00

18 lines
356 B
JavaScript

module.exports = function(grunt) {
grunt.initConfig({
lint: {
all: ['*.js', 'app/*.js', 'instruments/instruments.js', 'instruments/example.js', 'instruments/build.js']
}
, jshint: {
all: {
options: {
laxcomma: true
, es5: true
}
}
}
});
grunt.registerTask('default', 'lint');
};