aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorfrankiebee <frankie.diamond@gmail.com>2017-10-05 13:10:30 +0800
committerfrankiebee <frankie.diamond@gmail.com>2017-10-05 13:10:30 +0800
commit245ab70881d2ddabf14a6dc13d75c3f1789ab804 (patch)
treef55ec748920d1def9f246a2ef06e12ea923d42b9 /gulpfile.js
parente7589a099fa592b930458a16d7346ff20070a6e8 (diff)
downloadtangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar.gz
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar.bz2
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar.lz
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar.xz
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.tar.zst
tangerine-wallet-browser-245ab70881d2ddabf14a6dc13d75c3f1789ab804.zip
add /mascara to linting
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index ac36cf983..c18fd5949 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -151,7 +151,7 @@ gulp.task('copy:watch', function(){
gulp.task('lint', function () {
// Ignoring node_modules, dist/firefox, and docs folders:
- return gulp.src(['app/**/*.js', 'ui/**/*.js', '!node_modules/**', '!dist/firefox/**', '!docs/**', '!app/scripts/chromereload.js'])
+ return gulp.src(['app/**/*.js', 'ui/**/*.js', 'mascara/**/*.js', '!node_modules/**', '!dist/firefox/**', '!docs/**', '!app/scripts/chromereload.js'])
.pipe(eslint(fs.readFileSync(path.join(__dirname, '.eslintrc'))))
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).