taylor1791 / front-end-work-flow

MIT License
1 stars 1 forks source link

jsHint or JSCS is linting library (fusioncharts) #3

Closed lawrence1949 closed 9 years ago

lawrence1949 commented 9 years ago

In my gulp file line 76: browser: [ 'app//*.js', '!app/lib//.js', '!app//.test.js' ]

This will exclude fusionchart from linting. But I lost it when I run the build task --- cyclops-crush.

If I remove the the library from this line: browser: [ 'app//.js', '!app//.test.js' ] It will be included when I ran cyclops-crush, but jsHint or JSCS is also linting the library, which makes the application extremely slow.

taylor1791 commented 9 years ago

I made the jshint, jscs, json-validate, and html-validate tasks remove libraries from their parsing. Something like the following should fix it. Can you tell me if the following works after updating?

libraries: { '/lib': 'app/lib/' }

lawrence1949 commented 9 years ago

Looks like it's working now.