nicholasnelson / uncondemned

MIT License
0 stars 0 forks source link

jscs:src - Incorrect Configuration #1

Closed nicholasnelson closed 7 years ago

nicholasnelson commented 7 years ago

Something is causing jscs to report far too many files being scanned (currently showing 50 when we have more like 15 source files)

Running "jscs:src" (jscs) task
>> 49 files without code style errors.

Need to find out why this is happening and fix it

While adjusting the jscs config, could also split the checking of the Gruntfile away from the source

 src: [
    'Gruntfile.js',
    'src/scripts/**'
  ],

to:

  src: [
    'src/scripts/**'
  ],
  buildFiles: [
    'Gruntfile.js',
  ]