From dbaa380ea6f04cc124c443b12abac24347e9354c Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn <62570005+jdbruijn@users.noreply.github.com> Date: Thu, 25 Feb 2021 13:43:32 +0100 Subject: [PATCH] chore: fix invalid lintstaged configuration (#102) --- .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'], }