We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff36297 commit bdd0a1cCopy full SHA for bdd0a1c
.php-cs-fixer.php
@@ -6,16 +6,11 @@
6
7
$finder = $config->getFinder()
8
->ignoreDotFiles(false)
9
- ->in(__DIR__)
10
- ->exclude('manual/en/')
11
- ->name('*.inc')
12
- ->name('.php-cs-fixer.php')
13
- ->notPath('include/last_updated.inc')
14
- ->notPath('include/pregen-confs.inc')
15
- ->notPath('include/pregen-news.inc')
16
- ->notPath('include/releases.inc')
17
- ->notPath('include/version.inc')
18
- ->notPath('tests/run-tests.php');
+ ->in([
+ __DIR__ . '/src',
+ __DIR__ . '/tests',
+ ])
+ ->notName('run-tests.php');
19
20
$config
21
->setRiskyAllowed(true)
0 commit comments