From 3651a7950fe35cb7e4f1a376182ba212477e1078 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Thu, 2 Mar 2023 21:38:52 -0800 Subject: [PATCH] Fix lint-staged pattern for phpstan --- .lintstagedrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 5195aba2..534b8760 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -11,6 +11,6 @@ module.exports = { ], "**/*.php": [ "npm run lint:php", - ], - '*.php': () => 'npm run lint:phpstan' + () => 'npm run lint:phpstan' + ] };