-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
26 lines (21 loc) · 859 Bytes
/
phpstan.neon.dist
File metadata and controls
26 lines (21 loc) · 859 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
includes:
- ./vendor/larastan/larastan/extension.neon
- ./vendor/nesbot/carbon/extension.neon
- ./vendor/phpstan/phpstan-deprecation-rules/rules.neon
- phar://phpstan.phar/conf/bleedingEdge.neon
parameters:
paths:
- src
# Determines the level of checking. 5 is a good starter point 10 is max
level: 5
excludePaths:
- vendor/*
editorUrlTitle: '%%relFile%%:%%line%%'
# Opening file in an editor
#
# see https://phpstan.org/user-guide/output-format#opening-file-in-an-editor
# for overriding see https://phpstan.org/config-reference#multiple-files
#
# editorUrl: 'vscode://file/%%relFile%%:%%line%%' # Visual Studio Code
# editorUrl: 'phpstorm://open?file=%%relFile%%&line=%%line%%' # PhpStorm
# editorUrl: 'atom://core/open/file?filename=%%relFile%%&line=%%line%%' # Atom