From a993b377d6f7e38193262e72716f34ac64726b4d Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Wed, 24 Feb 2021 21:15:54 +0100 Subject: [PATCH] chore: fix invalid lintstaged configuration --- .lintstagedrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 88a6748..6245642 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,5 +1,5 @@ module.exports = { '*.{ts,tsx,vue,css,less,scss,html,htm,md,markdown}': 'prettier --write', '*.{json,yml,yaml}': ['prettier --write', () => 'npm run test'], - '*.{js,jsx}': ['eslint --fix', () => 'npm run test']], + '*.{js,jsx}': ['eslint --fix', () => 'npm run test'], }