-
Notifications
You must be signed in to change notification settings - Fork 6
/
.phpcstd.dist.ini
68 lines (53 loc) · 1.38 KB
/
.phpcstd.dist.ini
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
; This file will always be used as the base configuration
; Any config can define a list of includes, like so:
; include[] = "path/to/file.ini"
;
; you can also skip the array declaration:
; include = "path/to/file.ini"
; Define a list of source folders to check against
source[] = composer.json
source[] = src
source[] = tests
; Runs the command with --fix enabled before continuing as usual
autofix = false
; Indicates whether the run should continue whenever an error has been found
; This might reduce the time running phpcstd against your codebase,
; but also requires multiple runs to find all errors.
continue = false
; Configuration for Easy Coding Standard
[ecs]
enabled = false
; Configuration for PHP Mess Detector
[phpmd]
enabled = false
; Configuration for phpstan
[phpstan]
enabled = false
ignoreSources = true
; Configuration for php-parallel-lint
[parallel-lint]
enabled = false
;processes = 24
; Configuration for deptrac
[deptrac]
enabled = false
; Configuration for the "composer normalize" plugin
[composer-normalize]
enabled = false
updateLock = true
; The path to the composer binary
binary = "composer"
; Configuration for vimeo/psalm
[psalm]
enabled = false
; config = psalm.xml
; Configuration for PHP_CodeSniffer
[php_codesniffer]
enabled = false
;processes = 24
; Configuration for phan/phan
[phan]
enabled = false
; Configuration for rector
[rector]
enabled = false