mirror of
https://github.com/appium/appium.git
synced 2026-02-21 18:59:08 -06:00
18 lines
356 B
JavaScript
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');
|
|
};
|