cartodb/config.reek
2020-06-15 10:58:47 +08:00

17 lines
348 B
YAML

IrresponsibleModule:
enabled: false
DuplicateMethodCall:
enabled: true
exclude: []
max_calls: 2
allow_calls: []
UncommunicativeVariableName:
enabled: true
exclude: []
reject:
- !ruby/regexp /[0-9]$/
- !ruby/regexp /[A-Z]/
accept:
- _
# Removed " - !ruby/regexp /^.$/" to allow single character (frequent at loops and maps)