-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.reviewdog.yml
More file actions
27 lines (22 loc) · 817 Bytes
/
.reviewdog.yml
File metadata and controls
27 lines (22 loc) · 817 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
27
runner:
phpstan:
cmd: vendor/bin/phpstan analyse --memory-limit=2G --configuration phpstan.neon --error-format=checkstyle
level: info
psalm:
cmd: vendor/bin/psalm --config=psalm.xml --diff --output-format=checkstyle
level: info
csfixer:
cmd: vendor/bin/php-cs-fixer fix --config=.php_cs.php --cache-file=.build/phpcs/csfixer.cache --format=checkstyle --dry-run --diff
level: info
format: checkstyle
phpmd:
cmd: phpmd src/classes Renderer .phpmd.xml
level: info
format: checkstyle
#phpcs:
#cmd: phpcs --standard=.phpcs.xml --parallel=2 --cache=.build/phpcs/php-cs.cache --report=checkstyle src/*
#level: info
#name: checkstyle
#eslint:
#cmd: node_modules/.bin/eslint --ext js --ignore-path .eslintignore assets
#level: info