From 87d738d9fa53d77e8b26ab1c54d59978ce8ceea7 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 15 Jul 2020 22:38:09 +0200 Subject: [PATCH] Exclude stubs from code style check Signed-off-by: Daniel Kesselberg --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index 0442348cd9d..59781f0f835 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -13,6 +13,7 @@ $config ->exclude('config') ->exclude('data') ->notPath('3rdparty') + ->notPath('build/stubs') ->notPath('composer') ->notPath('vendor') ->in(__DIR__);