Skip to content

Instantly share code, notes, and snippets.

@slenderock
Last active September 7, 2017 07:19
Show Gist options
  • Save slenderock/139c14fedce6cd977c99ae6fa7e294f6 to your computer and use it in GitHub Desktop.
Save slenderock/139c14fedce6cd977c99ae6fa7e294f6 to your computer and use it in GitHub Desktop.
Rubocop config
AllCops:
Exclude:
- 'vendor/**/*'
- 'tmp/**/*'
- 'db/**/*'
- 'vendor/**/*'
- 'bin/**/*'
- '**/script/**/*'
- 'config/initializers/*'
Metrics/ModuleLength:
Exclude:
- "**/*_spec.rb"
Metrics/BlockLength:
Exclude:
- "**/*_spec.rb"
Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/FileName:
Enabled: false
Style/ModuleFunction:
Enabled: false
Style/Encoding:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/LineLength:
Max: 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment