Skip to content

Instantly share code, notes, and snippets.

@ganmacs
Last active August 29, 2015 14:18
Show Gist options
  • Save ganmacs/a498999f33b91a34dd15 to your computer and use it in GitHub Desktop.
Save ganmacs/a498999f33b91a34dd15 to your computer and use it in GitHub Desktop.
rubocop.yml
AllCops:
Exclude:
- 'db/schema.rb'
- 'vendor/**/*'
- 'db/migrate/**/*'
Metrics/LineLength:
Max: 120
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/AbcSize:
Max: 40
Metrics/MethodLength:
CountComments: false
Max: 19
Style/Documentation:
Enabled: false
Style/AsciiComments:
Enabled: false
Style/SignalException:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/PredicateName:
NamePrefixBlacklist:
- is_
- have_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment