firefly-iii/.ci/phpstan.neon

21 lines
608 B
Plaintext
Raw Normal View History

includes:
2020-07-31 10:41:21 -05:00
- ../vendor/nunomaduro/larastan/extension.neon
- ../vendor/ergebnis/phpstan-rules/rules.neon
- ../vendor/phpstan/phpstan-deprecation-rules/rules.neon
- ../vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
parameters:
2020-07-31 08:12:26 -05:00
ignoreErrors:
- '#is not allowed to extend#'
- '#is neither abstract nor final#'
2020-08-01 10:51:52 -05:00
- '#Control structures using switch should not be used\.#'
2020-09-18 05:16:47 -05:00
- '#has a nullable return type declaration#'
paths:
- ../app
- ../database
- ../routes
- ../bootstrap/app.php
2020-07-31 08:12:26 -05:00
# The level 8 is the highest level. original was 5
2020-09-18 05:16:47 -05:00
level: 5