aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-10-06 05:50:19 +0800
committerDan Finlay <dan@danfinlay.com>2017-10-06 05:50:19 +0800
commitcf178341c1944560fc9e092bc19fb3257200f9da (patch)
tree9c13530eac04032cf376e74efd4372363f4495b5 /gulpfile.js
parentc821a6b93a5a8e0f564b69d493c350e3763e749b (diff)
parent833d73da566f5d5d379f594c309318bab6eadbfb (diff)
downloadtangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar.gz
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar.bz2
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar.lz
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar.xz
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.tar.zst
tangerine-wallet-browser-cf178341c1944560fc9e092bc19fb3257200f9da.zip
Merge branch 'master' into SignTypedData
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).