Skip to content

Commit 69f356a

Browse files
authored
[TASK] Only run php-cs-fixer on local packages (#768)
Include missing package in phpstan
1 parent 5ceb76a commit 69f356a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.php-cs-fixer.dist.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22

33
$finder = (new PhpCsFixer\Finder())
4-
->in(__DIR__)
4+
->in(__DIR__.'/packages')
5+
->in(__DIR__.'/tests')
56
->exclude([
67
'docs',
78
'fixtures-local',

phpstan.neon

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ parameters:
1616
- packages/typo3-docs-theme/src
1717
- packages/typo3-guides-cli/src
1818
- packages/typo3-guides-extension/src
19+
- packages/typo3-version-handling/src
1920
- tools
2021
scanFiles:
2122
- vendor/phpdocumentor/guides/src/DependencyInjection/GuidesExtension.php

0 commit comments

Comments
 (0)