From a201a05cbad3980b6abd5f062f5ac08a9854803b Mon Sep 17 00:00:00 2001 From: Ekin Dursun Date: Mon, 28 Sep 2020 20:34:52 +0300 Subject: [PATCH] Lint all source files No source file except the main wasn't subject to linting. I updated the lint command for changing that. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5f3ce7899..062827a5b 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ ], "scripts": { "build": "webpack --config config/webpack.config.build.js", - "lint": "eslint src/datetime/DateTime.js test/ && echo 'Linting OK! 💪'", + "lint": "eslint src/ test/ && echo 'Linting OK! 💪'", "notify-pre-commit-hook": "echo '### Starting pre-commit hook 🦄'", "playground": "node scripts/start.js", "test": "jest",