Update JSON API
[src/app-framework-demo.git] / afm-client / bower_components / viewport-units-buggyfill / Gruntfile.js
1 module.exports = function(grunt) {
2   'use strict';
3
4   var jshintOptions = grunt.file.readJSON('.jshintrc');
5   jshintOptions.reporter = require('jshint-stylish');
6
7   grunt.initConfig({
8     jshint: {
9       options: jshintOptions,
10       target: [
11         'Gruntfile.js',
12         'viewport-units-buggyfill.js'
13       ]
14     }
15   });
16
17   grunt.loadNpmTasks('grunt-contrib-jshint');
18   grunt.registerTask('lint', 'jshint');
19 };