Sha256: 0182e5a2173f2f41c998bcda49851523b72debbdde3c19eadba87301cc99adc8

Contents?: true

Size: 733 Bytes

Versions: 4

Compression:

Stored size: 733 Bytes

Contents

---

# Generic smell configuration
detectors:
  # According to a study done by Card, Church, and Agresti (1986) and a study
  # done by Card and Glass (1990) small routines with 32 or fewer lines of code
  # were not corelated with lower cost or fault rate.
  #
  # Evidence suggested that larger routines (65 lines of code or more) were
  # cheaper to develop per line of code.
  # -- Code Complete 2
  #
  # Since Ruby is more terse than a lot of languages and because there seems to
  # be a relationship between error rate and structural complexity, the limit
  # should probably be slightly lower. However, the default value of 5 is too
  # low.
  TooManyStatements:
    max_statements: 20
  TooManyMethods:
    max_methods: 30

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
talkbird-0.0.5 .reek.yml
talkbird-0.0.4 .reek.yml
talkbird-0.0.3 .reek.yml
talkbird-0.0.2 .reek.yml