From 0aa9a8c40edb4223240242ff90fa1107a21870b2 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Thu, 8 Aug 2019 11:52:09 +0530 Subject: [PATCH] Fix lint-staged config again to make sure filenames are not provided --- lint-staged.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint-staged.config.js b/lint-staged.config.js index 352b3a8..552c8bb 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,3 +1,3 @@ module.exports = { - "*.{js,jsx,ts,tsx}": "run-s check:* lint" + "*.{js,jsx,ts,tsx}": () => "run-s check:* lint" };