-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
31 lines (29 loc) · 877 Bytes
/
phpstan.neon
File metadata and controls
31 lines (29 loc) · 877 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
25
26
27
28
29
30
31
includes:
- phar://phpstan.phar/conf/bleedingEdge.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- phpstan/rule.neon
- phpstan/type.neon
parameters:
level: max
paths:
- src/
- phpstan/
excludePaths:
analyse:
- phpstan/**
tmpDir: storage/cache/phpstan/
ignoreErrors:
- identifier: ternary.shortNotAllowed
checkImplicitMixed: true
checkMissingTypehints: true
checkTooWideReturnTypesInProtectedAndPublicMethods: true
checkUninitializedProperties: true
reportAlwaysTrueInLastCondition: true
reportAnyTypeWideningInVarTag: true
reportMaybesInMethodSignatures: true
reportMaybesInPropertyPhpDocTypes: true
reportPossiblyNonexistentGeneralArrayOffset: true
reportPossiblyNonexistentConstantArrayOffset: true
reportStaticMethodSignatures: true
reportUnmatchedIgnoredErrors: false
treatPhpDocTypesAsCertain: false