linux-baseline/.rubocop.yml
Sebastian Gumprich 936fcf2bec rename cop
Signed-off-by: Sebastian Gumprich <sebastian.gumprich@t-systems.com>
2021-01-25 21:16:15 +01:00

28 lines
444 B
YAML

---
AllCops:
Exclude:
- vendor/**/*
Documentation:
Enabled: false
ParameterAlignment:
Enabled: true
HashSyntax:
Enabled: true
LineLength:
Enabled: false
EmptyLinesAroundBlockBody:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
MethodLength:
Max: 40
NumericLiterals:
MinDigits: 10
Metrics/BlockLength:
Max: 35
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 10
Metrics/AbcSize:
Max: 30