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

.reviewdog.yml - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a3f065ad5be125feed240ae1adda0478c9130d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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