-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrumphp.yml
executable file
·78 lines (78 loc) · 2.16 KB
/
grumphp.yml
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
69
70
71
72
73
74
75
76
77
78
parameters:
git_dir: .
bin_dir: vendor/bin
tasks:
composer:
file: ./composer.json
strict: false
with_dependencies: false
no_check_all: false
no_check_lock: true
no_check_publish: false
no_local_repository: false
git_blacklist:
triggered_by: ['php']
keywords:
- "die("
- "die;"
- "exit("
- "exit;"
- "var_dump("
- "dump("
whitelist_patterns: []
regexp_type: G
phpcpd:
triggered_by: ['php']
directory: '.'
exclude:
- vendor
- var
- src/Entity/
- src/Repository/
names_exclude: []
regexps_exclude: []
fuzzy: true
min_lines: 40
min_tokens: 70
phpcsfixer2:
triggered_by: ['php']
rules: ["@@PSR2"]
allow_risky: ~
cache_file: .php_cs.cache
config: .php_cs
using_cache: ~
config_contains_finder: true
verbose: true
diff: false
phpcs:
triggered_by: ['php']
standard: ["PSR12"]
severity: ~
error_severity: ~
warning_severity: 6
tab_width: ~
report: full
report_width: ~
encoding: "UTF-8"
whitelist_patterns:
- /^src\/(.*)/
ignore_patterns: []
sniffs: []
exclude: []
phplint:
triggered_by: ['php', 'phtml', 'php3', 'php4', 'php5']
exclude: ['vendor', 'var']
jobs: ~
short_open_tag: false
ignore_patterns: []
securitychecker:
lockfile: ./composer.lock
format: ~
end_point: ~
timeout: ~
run_always: false
twigcs:
triggered_by: ['twig']
path: 'src'
severity: 'warning'
ruleset: 'Allocine\Twigcs\Ruleset\Official'