X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=afm-client%2Fbower_components%2Fviewport-units-buggyfill%2FGruntfile.js;fp=afm-client%2Fbower_components%2Fviewport-units-buggyfill%2FGruntfile.js;h=a8e10eef0cebee3992d969a22c2fe72572eb2355;hb=be83a8f382cf2fea98161bfd6d51719aacbf9aa9;hp=0000000000000000000000000000000000000000;hpb=1a4ed39bf86b2115eb0f1387d1e988462b492776;p=src%2Fapp-framework-demo.git diff --git a/afm-client/bower_components/viewport-units-buggyfill/Gruntfile.js b/afm-client/bower_components/viewport-units-buggyfill/Gruntfile.js new file mode 100755 index 0000000..a8e10ee --- /dev/null +++ b/afm-client/bower_components/viewport-units-buggyfill/Gruntfile.js @@ -0,0 +1,19 @@ +module.exports = function(grunt) { + 'use strict'; + + var jshintOptions = grunt.file.readJSON('.jshintrc'); + jshintOptions.reporter = require('jshint-stylish'); + + grunt.initConfig({ + jshint: { + options: jshintOptions, + target: [ + 'Gruntfile.js', + 'viewport-units-buggyfill.js' + ] + } + }); + + grunt.loadNpmTasks('grunt-contrib-jshint'); + grunt.registerTask('lint', 'jshint'); +};