mirror of
https://github.com/danog/Valinor.git
synced 2024-11-26 20:24:40 +01:00
21 lines
798 B
Plaintext
21 lines
798 B
Plaintext
includes:
|
|
- vendor/phpstan/phpstan-strict-rules/rules.neon
|
|
|
|
parameters:
|
|
level: max
|
|
paths:
|
|
- src
|
|
- tests
|
|
ignoreErrors:
|
|
# \PHPStan\Rules\BooleansInConditions
|
|
- '#Only booleans are allowed in .* given#'
|
|
# \PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule
|
|
- '#Short ternary operator is not allowed\. Use null coalesce operator if applicable or consider using long ternary\.#'
|
|
# \PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule
|
|
- '#Construct empty\(\) is not allowed\. Use more strict comparison\.#'
|
|
|
|
- '#Method [\w\\:]+_data_provider\(\) return type has no value type specified in iterable type#'
|
|
stubFiles:
|
|
- stubs/Psr/SimpleCache/CacheInterface.stub
|
|
tmpDir: var/cache/phpstan
|