UNPKG

cordova-plugin-fire-tv

Version:

Cordova plugin that augments your application's Manifest.xml with Fire TV bits and pieces.

19 lines (17 loc) 413 B
module.exports = function(grunt) { grunt.initConfig({ jshint: { options: { 'esversion': 6 }, files: [ 'Gruntfile.js', 'patch.js', ] } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', 'Runs code style check on editor code', ['jshint']); };