Sha256: 488c26ef03d32105d7aba360b8e36be933292425902eb83f5a7d9d5e14516b28

Contents?: true

Size: 773 Bytes

Versions: 1

Compression:

Stored size: 773 Bytes

Contents

AllCops:
  # Exclude auto-generated files by Rails
  Exclude:
    - 'db/schema.rb'
    - 'node_modules/**/*'
    - 'vendor/bundle/**/*'

# LineLength 80 comes from restrictions in good old days.
Layout/LineLength:
  Max: 160

# ABC size 20 is pretty well-done actually.
# For a reference, RuboCop itself configures this value as 17.
Metrics/AbcSize:
  Max: 20

# If all member of the team is Japanese, writing comments in Japanese
# makes sense.
Style/AsciiComments:
  Enabled: false

# Double negation is a famous Ruby idiom,
# why not using it with confidence?
Style/DoubleNegation:
  Enabled: false

# No particular reason to prefer array style,
# two different styles suit in different situations.
Style/SymbolArray:
  Enabled: false

Style/WordArray:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-sensible-0.3.0 config/rubocop.yml