henzeb/laravel-pipeline-factory

View on GitHub
.codeclimate.yml

Summary

Maintainability
Test Coverage
version: '2'
plugins:
  markdownlint:
    exclude_patterns:
      - vendor
      - LICENSE.md
      - CONTRIBUTING.md
    enabled: true
    checks:
      MD029:
        enabled: false
  phpcodesniffer:
    channel: "beta"
    config:
      standard: "PSR1,PSR2"
    exclude_patterns:
      - "**/*"
      - "!src/*"
    enabled: true
  phpmd:
    enabled: true
    exclude_patterns:
      - !**/*.php
    checks:
      CleanCode/StaticAccess:
        enabled: false
      CleanCode/BooleanArgumentFlag:
        enabled: false
      Naming/ShortMethodName:
        enabled: false
  duplication:
    enabled: true
exclude_patterns:
  - config/
  - 'coverage'
  - .github
  - db/
  - dist/
  - features/
  - '**/node_modules/'
  - script/
  - '**/spec/'
  - '**/test/'
  - '**/tests/'
  - Tests/
  - '**/vendor/'
  - '**/*_test.go'
  - '**/*.d.ts'