Skip to content

Commit

Permalink
Exclude files that currently trigger PHP-CS-Fixer errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 15, 2024
1 parent 00be6af commit 05472fc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
->in(__DIR__ . '/tests/_files')
->in(__DIR__ . '/tests/end-to-end')
->in(__DIR__ . '/tests/unit')
// InterfaceWithPropertyWithGetHook.php and InterfaceWithPropertyWithSetHook.php use PHP 8.4 syntax that currently leads to PHP-CS-Fixer errors
->notName('InterfaceWithPropertyWithGetHook.php')
->notName('InterfaceWithPropertyWithSetHook.php')
// DeprecatedPhpFeatureTest.php must not use declare(strict_types=1);
->notName('DeprecatedPhpFeatureTest.php')
// Issue5795Test.php contains required whitespace that would be cleaned up
Expand Down

0 comments on commit 05472fc

Please sign in to comment.