Skip to content

Commit 34b3efa

Browse files
authored
Disable operator_linebreak and modifier_keywords rules (#50)
These rules were causing formatting issues with the existing codebase and are not essential for code quality in this project.
1 parent 56128f0 commit 34b3efa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.php-cs-fixer.dist.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
'visibility_required' => ['elements' => ['property', 'method']], // Exclude 'const' for PHP 5.6 compatibility
77
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
88
'method_argument_space' => false,
9+
'operator_linebreak' => false,
10+
'modifier_keywords' => false,
911
])
1012
->setFinder(
1113
PhpCsFixer\Finder::create()

0 commit comments

Comments
 (0)