From cafe3adfe8d1bc245b9557b6cbb4de13df7c1c1c Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Thu, 7 Oct 2021 16:15:11 +0200
Subject: [PATCH] cs-fixer: skip bundles.php

It's auto generated, so we don't have control over it and
fixing it each time is annoying.
---
 .php-cs-fixer.dist.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
index 4de9e58..62b87f0 100644
--- a/.php-cs-fixer.dist.php
+++ b/.php-cs-fixer.dist.php
@@ -3,6 +3,7 @@
 $finder = PhpCsFixer\Finder::create()
     ->in(__DIR__)
     ->exclude('var')
+    ->notPath('config/bundles.php')
 ;
 
 $config = new PhpCsFixer\Config();
-- 
GitLab