Use crlf check for LINT_FILES and SRC_FILES.

This commit is contained in:
Kalervo Kujala 2012-08-22 12:22:58 +03:00
parent 2ffd3ae1c7
commit 288705dab4

View File

@ -219,8 +219,7 @@ target.bundle = function() {
bundleVersion = exec('git log --format="%h" -n 1',
{silent: true}).output.replace('\n', '');
// Handle only src/*.js for now.
crlfchecker.checkIfCrlfIsPresent(['*.js']);
crlfchecker.checkIfCrlfIsPresent(SRC_FILES);
// This just preprocesses the empty pdf.js file, we don't actually want to
// preprocess everything yet since other build targets use this file.
@ -685,8 +684,7 @@ target.lint = function() {
exec('gjslint --nojsdoc ' + LINT_FILES.join(' '));
// Handle only src/*.js for now.
crlfchecker.checkIfCrlfIsPresent(['src/*.js']);
crlfchecker.checkIfCrlfIsPresent(LINT_FILES);
};
//