Skip to content

Commit 9546098

Browse files
authored
Merge pull request #6401 from paulbalandan/cs-exclude
Exclude non-monolithic files from CS
2 parents 071cd04 + e48296e commit 9546098

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.php-cs-fixer.dist.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
__DIR__ . '/tests',
2626
__DIR__ . '/utils',
2727
])
28-
->exclude(['ThirdParty'])
28+
->exclude([
29+
'Pager/Views',
30+
'ThirdParty',
31+
'Validation/Views',
32+
])
2933
->notName('#Foobar.php$#')
3034
->append([
3135
__FILE__,

.php-cs-fixer.no-header.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
__DIR__ . '/app',
2626
__DIR__ . '/public',
2727
])
28+
->exclude(['Views/errors/html'])
2829
->notName('#Logger\.php$#')
2930
->append([
3031
__DIR__ . '/admin/starter/builds',

0 commit comments

Comments
 (0)