kopia lustrzana https://github.com/OpenDroneMap/NodeODM
16 wiersze
332 B
JavaScript
16 wiersze
332 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
require('time-grunt')(grunt);
|
|
|
|
grunt.initConfig({
|
|
jshint: {
|
|
options: {
|
|
jshintrc: ".jshintrc"
|
|
},
|
|
all: ['Gruntfile.js', 'libs/**/*.js', 'docs/**/*.js', 'index.js', 'config.js']
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.registerTask('default', ['jshint']);
|
|
}; |