Browse Source

Add "grunt/*.js" in the JSHint and JSCS checks.

pull/453/head
XhmikosR 11 years ago
parent
commit
8e29b3d321
  1. 2
      Gruntfile.js
  2. 3
      grunt/ratchicons-data-generator.js

2
Gruntfile.js

@ -178,7 +178,7 @@ module.exports = function(grunt) {
jshintrc: 'js/.jshintrc'
},
grunt: {
src: 'Gruntfile.js'
src: ['Gruntfile.js', 'grunt/*.js']
},
src: {
src: 'js/*.js'

3
grunt/ratchicons-data-generator.js

@ -4,6 +4,9 @@
* Original script from Bootstrap (http://getbootstrap.com).
* Bootstrap is copyright 2014 Twitter, Inc. and licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE).
*/
/* jshint node: true */
'use strict';
var fs = require('fs');

Loading…
Cancel
Save