librenms-librenms/.codeclimate.yml
Tony Murray 664e0d7dcf Just disable phan for now (#9045)
Seems like it would take a lot to make it less noisy, phpmd has been more helpful
2018-08-20 23:55:36 +01:00

40 lines
645 B
YAML

version: "2"
plugins:
markdownlint:
enabled: true
phan:
enabled: false
phpcodesniffer:
enabled: true
config:
standard: "PSR2"
checks:
Generic Files LineLength TooLong:
enabled: false
duplication:
enabled: true
config:
languages:
- javascript
- python
- php
shellcheck:
enabled: true
eslint:
enabled: true
fixme:
enabled: true
phpmd:
enabled: true
checks:
Controversial/CamelCaseVariableName:
enabled: false
radon:
enabled: true
exclude_patterns:
- "tests/"
- "lib/"
- "vendor/"
- "html/js/"
- "html/css/"