mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-02 19:16:39 +00:00
44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
includes:
|
|
- ../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:
|
|
ignoreErrors:
|
|
- '#is not allowed to extend#'
|
|
- '#is neither abstract nor final#'
|
|
- '#has a nullable return type declaration#'
|
|
- '#with a nullable type declaration#'
|
|
-
|
|
message: '#Control structures using switch should not be used.#'
|
|
paths:
|
|
- ../app/Api/V1/Controllers/Data/DestroyController.php
|
|
- ../app/Console/Commands/Correction/FixAccountTypes.php
|
|
- ../app/Console/Commands/Upgrade/OtherCurrenciesCorrections.php
|
|
- ../app/Exceptions/GracefulNotFoundHandler.php
|
|
- ../app/Generator/Webhook/StandardMessageGenerator.php
|
|
-
|
|
message: '#Function compact\(\) should not be used#'
|
|
paths:
|
|
- ../app/Generator/Report/Account/MonthReportGenerator.php
|
|
- ../app/Generator/Report/Audit/MonthReportGenerator.php
|
|
- ../app/Generator/Report/Budget/MonthReportGenerator.php
|
|
- ../app/Generator/Report/Category/MonthReportGenerator.php
|
|
- ../app/Generator/Report/Standard/MonthReportGenerator.php
|
|
- ../app/Generator/Report/Standard/MultiYearReportGenerator.php
|
|
- ../app/Generator/Report/Standard/YearReportGenerator.php
|
|
- ../app/Generator/Report/Tag/MonthReportGenerator.php
|
|
- ../app/Http/Controllers/Account/*.php
|
|
- ../app/Http/Controllers/Admin/*.php
|
|
- ../app/Http/Controllers/*.php
|
|
|
|
paths:
|
|
- ../app
|
|
- ../database
|
|
- ../routes
|
|
- ../bootstrap/app.php
|
|
|
|
# The level 8 is the highest level. original was 5
|
|
level: 1
|