Merge afb-client
[src/app-framework-demo.git] / afb-client / bower_components / viewport-units-buggyfill / Gruntfile.js
diff --git a/afb-client/bower_components/viewport-units-buggyfill/Gruntfile.js b/afb-client/bower_components/viewport-units-buggyfill/Gruntfile.js
new file mode 100755 (executable)
index 0000000..a8e10ee
--- /dev/null
@@ -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');
+};