forked from JAK0TA/formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
29 lines (23 loc) · 953 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
includes:
- vendor/saschaegerer/phpstan-typo3/extension.neon
parameters:
# Use local .cache dir instead of /tmp
tmpDir: .cache/phpstan
parallel:
# Don't be overly greedy on machines with more CPU's to be a good neighbor especially on CI
maximumNumberOfProcesses: 5
level: 9
checkThisOnly: false
checkPhpDocMissingReturn: false
reportUnmatchedIgnoredErrors: true
paths:
- %currentWorkingDirectory%/Classes/
- %currentWorkingDirectory%/Configuration/
- %currentWorkingDirectory%/ext_emconf.php
- %currentWorkingDirectory%/ext_localconf.php
- %currentWorkingDirectory%/ext_tables.php
scanFiles:
- vendor/parsecsv/php-parsecsv/parsecsv.lib.php
ignoreErrors:
- '/^Parameter #1 \$value of function intval expects array\|bool\|float\|int\|resource\|string\|null, mixed given.$/'
- '/^Parameter #1 \$value of function strval expects bool\|float\|int\|resource\|string\|null, mixed given.$/'