build-configs/templates/drupal/phpstan.neon.dist.twig
Oliver Davies 87c2f2e496 Allow for running PHPStan on test files and not
...ignoring them within the PHPStan configuration file
2023-11-28 13:31:23 +00:00

19 lines
351 B
Twig

# {{ managedText | raw }}
parameters:
level: {{ php.phpstan.level }}
{% if not experimental.runStaticAnalysisOnTests %}
excludePaths:
- *Test.php
- *TestBase.php
{% endif %}
paths:
{% for path in php.phpstan.paths -%}
- {{ path }}
{%- endfor %}
{% if php.phpstan.baseline %}
includes:
- phpstan-baseline.neon
{% endif %}