From 91cdf08489dd23d21412ce1fc2695e1e7753ec80 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 23 Jan 2021 13:37:07 -0800 Subject: [PATCH] Update .php_cs.dist --- .php_cs.dist | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.php_cs.dist b/.php_cs.dist index 2da2c8ee4..bd4535683 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -3,15 +3,7 @@ use PhpCsFixer\Config; use PhpCsFixer\Finder; -$finder = (new Finder)->in([ - 'app', - 'bootstrap', - 'config', - 'database', - 'resources/lang', - 'routes', - 'tests', -]); +$finder = (new Finder)->in(__DIR__)->exclude(['vendor', 'node_modules', 'storage']); return (new Config) ->setRiskyAllowed(true)