Skip to content

Instantly share code, notes, and snippets.

@bhoggard
Created September 6, 2020 19:40
Show Gist options
  • Save bhoggard/391fffa3095bc172e09b87713b0f5360 to your computer and use it in GitHub Desktop.
Save bhoggard/391fffa3095bc172e09b87713b0f5360 to your computer and use it in GitHub Desktop.
My preferred rubocop configuration
require:
- rubocop-performance
- rubocop-rails
AllCops:
Exclude:
- bin/*
- db/schema.rb
- node_modules/**/*
- vendor/**/*
NewCops: enable
Layout/LineLength:
Max: 115
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/SymbolArray:
Enabled: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment