-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpstan.neon
35 lines (32 loc) · 899 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
30
31
32
33
34
35
includes:
- phpstan.baseline.neon
- .Build/vendor/symplify/phpstan-rules/config/regex-rules.neon
rules:
- Symplify\PHPStanRules\Rules\NoReturnArrayVariableListRule
parameters:
phpVersion: 70400
level: 9
cognitive_complexity:
class: 10
function: 6
paths:
- Classes
services:
-
class: Symplify\PHPStanRules\Rules\ForbiddenFuncCallRule
tags: [phpstan.rules.rule]
arguments:
forbiddenFunctions:
- eval
- dump
- die
- compact
- var_dump
-
class: Symplify\PHPStanRules\Rules\ForbiddenNodeRule
tags: [phpstan.rules.rule]
arguments:
forbiddenNodes:
- PhpParser\Node\Expr\Empty_
- PhpParser\Node\Stmt\Switch_
- PhpParser\Node\Expr\ErrorSuppress