Use crlf check for LINT_FILES and SRC_FILES.
This commit is contained in:
parent
2ffd3ae1c7
commit
288705dab4
6
make.js
6
make.js
@ -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);
|
||||
};
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user