Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.reviewdog.yml')
-rw-r--r--.reviewdog.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.reviewdog.yml b/.reviewdog.yml
new file mode 100644
index 00000000..7a3f065a
--- /dev/null
+++ b/.reviewdog.yml
@@ -0,0 +1,23 @@
+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 --diff-methods --output-format=checkstyle
+ level: info
+ name: checkstyle
+
+ 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
+ name: 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