forked from laraxot/module_ui_fila3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon.dist
executable file
·47 lines (39 loc) · 1.37 KB
/
phpstan.neon.dist
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
36
37
38
39
40
41
42
43
44
45
46
47
includes:
- phpstan-baseline.neon
- ./vendor/larastan/larastan/extension.neon
- ./vendor/thecodingmachine/phpstan-safe-rule/phpstan-safe-rule.neon
#- ./vendor/symplify/phpstan-rules/config/code-complexity-rules.neon
#- ./vendor/symplify/phpstan-rules/config/collector-rules.neon
#- ./vendor/symplify/phpstan-rules/config/naming-rules.neon
#- ./vendor/symplify/phpstan-rules/config/regex-rules.neon
#- ./vendor/symplify/phpstan-rules/config/static-rules.neon
parameters:
level: max
paths:
- .
ignoreErrors:
# - '#Unsafe usage of new static#'
- '#PHPDoc tag @mixin contains unknown class #'
- '#Static call to instance method Nwidart#'
excludePaths:
- ./build/*
- ./vendor/*
- ./*/vendor/*
- ./docs/*
# - ./Tests/*
- ./_ide_helper.php
bootstrapFiles:
#- ./Services/vendor/autoload.php
- ./phpstan_constants.php
scanFiles:
# - ./Helpers/Helper.php
# - ./vendor/amenadiel/jpgraph/src/config.inc.php
editorUrl: 'vscode://file/%%file%%:%%line%%'
tmpDir: build/phpstan
checkUnusedViews: false
checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false
treatPhpDocTypesAsCertain: false
reportUnmatchedIgnoredErrors: false
checkOctaneCompatibility: false
checkModelProperties: false