Skip to content

Instantly share code, notes, and snippets.

@stereosupersonic
Created December 1, 2020 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stereosupersonic/ccf2d7a762a582da93b80479fc8ae454 to your computer and use it in GitHub Desktop.
Save stereosupersonic/ccf2d7a762a582da93b80479fc8ae454 to your computer and use it in GitHub Desktop.
rubocop basics settings
AllCops:
Include:
- '**/*.rb'
- '**/*.rake'
- '**/Gemfile'
Exclude:
- '**/tmp/**/*'
- '**/vendor/**/*'
- '**/node_modules/**/*'
Layout/LineLength:
Max: 130
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/HashSyntax:
Enabled: true
EnforcedStyle: ruby19_no_mixed_keys
Style/FrozenStringLiteralComment:
Enabled: false
Style/Documentation:
Enabled: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment