12345678910111213141516171819202122232425262728 |
- version: "2"
- languages:
- Ruby: false
- JavaScript: false
- Python: true
- PHP: false
- exclude_patterns:
- - "*.js"
- - "*.rb"
- - "*.php"
- - "tests/"
- plugins:
- radon:
- enabled: true
- exclude_patterns:
- - "templates/"
- config:
- threshold: "D"
- checks:
- argument-count:
- enabled: false
- similar-code:
- config:
- threshold: 40
|