From 66e7b6425b1a9d12458dad91886928e8d2c53d22 Mon Sep 17 00:00:00 2001 From: Vladimir Agafonkin Date: Wed, 1 Jun 2016 20:05:11 +0300 Subject: [PATCH] remove unnecessary lint args, close #4613 --- Jakefile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jakefile.js b/Jakefile.js index 8c86f1ac..35f4a02c 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -43,10 +43,10 @@ function calculateVersion(officialRelease, callback) { } desc('Check Leaflet source for errors with ESLint'); -task('lint', {async: true}, hint('Checking for JS errors...', 'src --config package.json')); +task('lint', {async: true}, hint('Checking for JS errors...', 'src')); desc('Check Leaflet specs source for errors with ESLint'); -task('lintspec', {async: true}, hint('Checking for specs JS errors...', 'spec/suites --config spec/.eslintrc')); +task('lintspec', {async: true}, hint('Checking for specs JS errors...', 'spec/suites')); desc('Combine and compress Leaflet source files'); task('build', {async: true}, function (compsBase32, buildName, officialRelease) {