-
-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathphpstan.neon
More file actions
25 lines (24 loc) · 836 Bytes
/
phpstan.neon
File metadata and controls
25 lines (24 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
parameters:
ignoreErrors:
- identifier: missingType.generics
- identifier: missingType.iterableValue
- '#implements deprecated interface League\\Csv\\ByteSequence#'
- '#Attribute class Deprecated does not exist.#'
- '#League\\Csv\\HTMLConverter:#'
- '#League\\Csv\\XMLConverter:#'
- '#Dom\\HTMLElement#'
- '#Dom\\XMLDocument#'
- '#Dom\\HTMLDocument#'
- '#Dom\\Element#'
level: max
paths:
- src
reportUnmatchedIgnoredErrors: true
treatPhpDocTypesAsCertain: false
parallel:
processTimeout: 300.0