Sha256: 5d145dd16417951d0d417f04e9fa38c4a2a86a4ce94bfc90af4e5e3cb33ec3ed

Contents?: true

Size: 980 Bytes

Versions: 2

Compression:

Stored size: 980 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/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  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

2 entries across 2 versions & 1 rubygems

Version Path
checkoff-0.3.1 .rubocop.yml
checkoff-0.3.0 .rubocop.yml