From dd1bc4fb9fc63a907ef7d7991a070d2d497dbdf0 Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Fri, 30 Sep 2022 13:32:07 +0300 Subject: [PATCH] Ignore `version.inc` file in CS-Fixer Relates 0fc6d96 --- .php-cs-fixer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 7376e5cbc..1a33af693 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -14,6 +14,7 @@ $finder = $config->getFinder() ->notPath('include/pregen-confs.inc') ->notPath('include/pregen-news.inc') ->notPath('include/releases.inc') + ->notPath('include/version.inc') ->notPath('tests/run-tests.php'); $config