diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-04-03 06:39:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-03 06:39:44 +0800 |
commit | 672e3a463ad9b40f4116269d243145f35c3b6fd5 (patch) | |
tree | f64713d94337e988f7de22809116602001337720 /gulpfile.js | |
parent | 8cd2022169f50607812d1f36d408c098c0dc29ed (diff) | |
parent | fa66b78b8b2c2b8519e818744941cfb6dece92f8 (diff) | |
download | tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar.gz tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar.bz2 tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar.lz tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar.xz tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.tar.zst tangerine-wallet-browser-672e3a463ad9b40f4116269d243145f35c3b6fd5.zip |
Merge pull request #3828 from MetaMask/lint-sys-fix
Lint system fixes
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index fd9ab6249..cd01a9d5f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -207,7 +207,7 @@ gulp.task('dev:copy', // lint js -const lintTargets = ['app/**/*.json', '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'] +const lintTargets = ['app/**/*.json', 'app/**/*.js', '!app/scripts/vendor/**/*.js', 'ui/**/*.js', 'old-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'] gulp.task('lint', function () { // Ignoring node_modules, dist/firefox, and docs folders: |