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:
authorffflabs <amenadiel@gmail.com>2020-09-11 10:48:07 +0300
committerffflabs <amenadiel@gmail.com>2020-10-19 20:03:43 +0300
commit78b76c8435398cfab1e80fdc29f23f49c2992c74 (patch)
treefc78d27569b4e414cddabfc7c3caacf75d4255cb /.reviewdog.yml
parent7ab62d1cdd5e5e0122e2d91c536bf25eb1d32ad6 (diff)
github_action
adds reviewdog, preparing more checks adds reviewdog, preparing more checks adds reviewdog, preparing more checks adds reviewdog, preparing more checks containerutils now extends Slim\Container adds PR ckecks for psalm, phpstan, phpcs and phpmd preparing next deploy removes psalm from scrutinizer next attempt at github actions removing usage of Kint for githu actions cache for style checks cache for style checks cache for style checks cache for style checks cache for style checks cache for style checks after csfixer after csfixer update baselines add rector check remove usage of 'with(...)' from js scripts tiny syntax improvements use flash messages to check for treejs refresh being set first POC of messaging API to propagate query requests and jstree refresh instructions instruction to refresh jsTree must be passed to the view manager, not to Misc adds rector github action ignore rector.php when running code style checks and transforms typo fix formatting of theme css normalize composer passing static analysis passing tests passing tests passing tests
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