From c3bb0f409ddff2faffa4ac5ad14bec99e31972fc Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 30 Dec 2019 11:50:45 -0700 Subject: [PATCH] Ignore app/cache when runnin g php-cs-fixer --- .php_cs.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php_cs.dist b/.php_cs.dist index 2c724a9..9719701 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -3,7 +3,7 @@ $finder = PhpCsFixer\Finder::create()->in([ __DIR__ . DIRECTORY_SEPARATOR . 'app', __DIR__ . DIRECTORY_SEPARATOR . 'tests' -]); +])->notPath('cache'); return PhpCsFixer\Config::create()->setRules([ '@PSR1' => true,