linux-baseline/.rubocop.yml

29 lines
446 B
YAML
Raw Normal View History

---
2014-05-27 09:38:21 +02:00
AllCops:
Exclude:
- vendor/**/*
- "*/puppet/Puppetfile"
- "*/puppet/.tmp/**/*"
2014-05-27 09:38:21 +02:00
Documentation:
Enabled: false
AlignParameters:
Enabled: true
Encoding:
Enabled: true
HashSyntax:
Enabled: true
LineLength:
Enabled: false
EmptyLinesAroundBlockBody:
Enabled: false
2014-05-27 09:38:21 +02:00
MethodLength:
Max: 40
2014-05-27 09:38:21 +02:00
NumericLiterals:
MinDigits: 10
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 10
Metrics/AbcSize:
Max: 29