Sha256: 07ff168f613e38434ad377b3f523811a5e93e44e7c23b3bcd7f9a8875c3a63d9
Contents?: true
Size: 774 Bytes
Versions: 1
Compression:
Stored size: 774 Bytes
Contents
AllCops: # Exclude auto-generated files by Rails Exclude: - 'db/schema.rb' - 'node_modules/**/*' - 'vendor/bundle/**/*' # ABC size 20 is pretty well-done actually. # For a reference, RuboCop itself configures this value as 17. Metrics/AbcSize: Max: 20 # LineLength 80 comes from restrictions in good old days. Metrics/LineLength: Max: 160 # 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.2.0 | config/rubocop.yml |