UNPKG

box-chrome-sdk

Version:

A Chrome App SDK for the Box V2 API

17 lines (14 loc) 367 B
module.exports = function(grunt) { 'use strict'; grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), eslint: { src: ['scripts/**/*.js'], options: { config: 'eslint.json' } } }); grunt.loadNpmTasks('grunt-eslint'); grunt.registerTask('default', ['eslint']); };