aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2017-10-06 02:06:17 +0800
committerGitHub <noreply@github.com>2017-10-06 02:06:17 +0800
commitc880d81ec3bfcd4d46c5d454cf9828adff15a0f5 (patch)
tree7c359f5fe8ca642f0034ac1ce5417a3db004ceb7 /gulpfile.js
parent35f4148343cf4400f7a38eef07282cae44cd0335 (diff)
parent7ec068d279276a7e0fcc862d18e3fd3e1648728b (diff)
downloadtangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar.gz
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar.bz2
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar.lz
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar.xz
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.tar.zst
tangerine-wallet-browser-c880d81ec3bfcd4d46c5d454cf9828adff15a0f5.zip
Merge pull request #2289 from MetaMask/mascara-tuneups
Mascara tuneups
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..557b58a68 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/src/*.js', 'mascara/server/*.js', '!node_modules/**', '!dist/firefox/**', '!docs/**', '!app/scripts/chromereload.js', '!mascara/test/jquery-3.1.0.min.js'])
.pipe(eslint(fs.readFileSync(path.join(__dirname, '.eslintrc'))))
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).