build-configs/templates/php/drupal/phpstan.neon.dist.twig

19 lines
351 B
Twig
Raw Permalink Normal View History

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