chess-polyglot
Version:
chess-polyglot is node module to grab moves from Polyglot-formatted opening-book bin files
20 lines (16 loc) • 367 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
jshint: {
files: ['Gruntfile.js', 'lib/*.js', 'test/*.js'],
options: {
'esversion': 6
}
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['jshint']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
};