forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.dist.neon
31 lines (27 loc) · 1.29 KB
/
phpstan.dist.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
includes:
- dev-tools/vendor/phpstan/phpstan/conf/bleedingEdge.neon
# Baseline, should only shrink! To regenerate it, just execute `composer phpstan:baseline`.
- dev-tools/phpstan/baseline.php
parameters:
level: 6
paths:
- src
- tests
excludePaths:
- tests/Fixtures
reportUnmatchedIgnoredErrors: true # Do not allow outdated errors in the baseline
treatPhpDocTypesAsCertain: false
ignoreErrors:
- '/^Class [a-zA-Z\\]+ extends @final class PhpCsFixer\\(ConfigurationException\\InvalidConfigurationException|ConfigurationException\\InvalidFixerConfigurationException|Tokenizer\\Tokens|Console\\Command\\FixCommand)\.$/'
- '/^\$this\(PhpCsFixer\\Tokenizer\\Tokens\) does not accept PhpCsFixer\\Tokenizer\\Token\|null\.$/'
# ignore PHPUnit data providers return type as they are not checked against the test methods anyway
-
message: '#^Method PhpCsFixer\\Tests\\.+::provide.+Cases\(\) return type has no value type specified in iterable type (array|iterable)\.$#'
path: tests
count: 1126
-
message: '#Call to static method .+ with .+ will always evaluate to true.$#'
path: tests
count: 18
tipsOfTheDay: false
tmpDir: dev-tools/phpstan/cache