aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-01-19 05:11:15 +0800
committerGitHub <noreply@github.com>2018-01-19 05:11:15 +0800
commit59d0fa2637ccc4a42f850cb68b8d2da36e0c4ea7 (patch)
treee2268b77aabad669d129e889cdd9e90b60764b91 /gulpfile.js
parent098f0ca22c72db565e1b514558ddbd330192434f (diff)
parentbb853c6b1c9c23a677b448d223dc8bb90da94505 (diff)
downloadtangerine-wallet-browser-59d0fa2637ccc4a42f850cb68b8d2da36e0c4ea7.tar.gz
tangerine-wallet-browser-59d0fa2637ccc4a42f850cb68b8d2da36e0c4ea7.tar.zst
tangerine-wallet-browser-59d0fa2637ccc4a42f850cb68b8d2da36e0c4ea7.zip
Merge pull request #3016 from MetaMask/sentry
Stability - Add Sentry Remote Error Reporting
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 4c36ff7d4..e27342d06 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -171,7 +171,7 @@ gulp.task('deps', function (cb) {
gulp.task('lint', function () {
// Ignoring node_modules, dist/firefox, and docs folders:
- 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'])
+ return gulp.src(['app/**/*.js', '!app/scripts/vendor/**/*.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).