Sha256: 13cc76d8bf56e94e0dff855a22a9dd015cde77aad3f42a3d4dbd03db9927c0a1

Contents?: true

Size: 839 Bytes

Versions: 5

Compression:

Stored size: 839 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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
checkoff-0.1.4 .rubocop.yml
checkoff-0.1.3 .rubocop.yml
checkoff-0.1.2 .rubocop.yml
checkoff-0.1.1 .rubocop.yml
checkoff-0.1.0 .rubocop.yml