-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcaptainhook.json
More file actions
31 lines (31 loc) · 1.17 KB
/
captainhook.json
File metadata and controls
31 lines (31 loc) · 1.17 KB
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
{
"config": {
"verbosity": "normal",
"allow-failure": false,
"ansi-colors": true,
"bootstrap": "autoload.php",
"git-directory": ".git",
"fail-on-first-error": false,
"plugins": [
{
"plugin": "\\Bartlett\\CaptainHookBinPlugin\\BinPlugin",
"options": {
"binary-directory": "{$ENV|value-of:VENDOR_BIN_DIR|default:vendor/bin}",
"config-directory": "{$ENV|value-of:XDG_CONFIG_HOME|default:.github/linters}",
"ansi-colors-flag": "--ansi",
"colors-flag": "--colors",
"auto-colors-flag": "--colors=auto",
"always-colors-flag": "--colors=always",
"never-colors-flag": "--colors=never"
}
}
],
"includes": [
".config/captainhook/pre-commit.phpcs.json",
".config/captainhook/pre-commit.phpcs-fixer.json",
".config/captainhook/pre-commit.phplint.json",
".config/captainhook/pre-push.phpstan.json",
".config/captainhook/pre-push.phpunit.json"
]
}
}