mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-09 01:46:14 -04:00
* Add PHPStan #fix https://github.com/FreshRSS/FreshRSS/issues/4016 https://phpstan.org/ ```sh composer run-script phpstan ``` * More fixes * Fix global variables * Add .phtml * Fix merge https://github.com/FreshRSS/FreshRSS/pull/4090 * Fix more warnings * Fix view errors and enable in CI * ReturnTypeWillChange * Dynamic view type * Fix Minz static/self bug
26 lines
494 B
Plaintext
26 lines
494 B
Plaintext
parameters:
|
|
# TODO: Increase rule-level https://phpstan.org/user-guide/rule-levels
|
|
level: 1
|
|
fileExtensions:
|
|
- php
|
|
- phtml
|
|
paths:
|
|
- .
|
|
excludePaths:
|
|
- lib/lib_phpQuery.php
|
|
- lib/PHPMailer/*
|
|
- lib/SimplePie/*
|
|
- node_modules/*
|
|
# TODO: include tests
|
|
- tests/*
|
|
- vendor/*
|
|
scanDirectories:
|
|
- lib/PHPMailer/
|
|
- lib/SimplePie/
|
|
bootstrapFiles:
|
|
- cli/_cli.php
|
|
- lib/favicons.php
|
|
- lib/lib_phpQuery.php
|
|
- lib/SimplePie/SimplePie.php
|
|
- app/SQL/install.sql.sqlite.php
|