Sha256: bbb7868469d26e81090cb663cf124d20eac8c2930052a5107b17ddf28bd7655e

Contents?: true

Size: 905 Bytes

Versions: 4

Compression:

Stored size: 905 Bytes

Contents

# I like trailing commas in maps.  They let me insert new elements and
# see them as one line in a diff, not two.
Style/TrailingCommaInLiteral:
  EnforcedStyleForMultiline: comma

# I use keyword arguments for a poor man's dependency injection to cut
# down on the magic in my tests.
ParameterLists:
  CountKeywordArgs: false

# If i'm using one function name and returning the contents of an
# attribute, that's OK.  The alternative would be this, which I find
# confusing and often not really what I mean:
#
# attr_reader :something_else
# alias_method :something, :something_else
TrivialAccessors:
   ExactNameMatch: true

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

#
# Add 'XXX' to the standard list
#
Style/CommentAnnotation:
   Keywords:
    - "TOD\
       O"
    - "FIXM\
       E"
    - "OPTIMIZ\
       E"
    - "HAC\
       K"
    - "REVIE\
       W"
    - "XX\
       X"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
checkoff-0.2.0 .rubocop.yml
checkoff-0.1.7 .rubocop.yml
checkoff-0.1.6 .rubocop.yml
checkoff-0.1.5 .rubocop.yml