ckeditor / ckeditor-boilerplate

A boilerplate for modern git based projects
Other
6 stars 4 forks source link

jshint and jscs tasks should ignore git exluded files #9

Open pjasiun opened 9 years ago

pjasiun commented 9 years ago

Grunt tasks: jshint and jscs should parse .git/info/exclude file and add to the list of ignore files all files and directories locally ignored by git.

fredck commented 9 years ago

Found out the following to list all current ignored files:

git ls-files --other --ignore --exclude-standard

We should check it with the exclude folder and if feeding the tasks ignore list with it performs well.