Skip to content

Instantly share code, notes, and snippets.

@bryanp
Created November 3, 2015 14:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanp/11a79177f846834866e0 to your computer and use it in GitHub Desktop.
Save bryanp/11a79177f846834866e0 to your computer and use it in GitHub Desktop.
Rubocop Example
AllCops:
Exclude:
- 'bin/**/*'
- 'vendor/**/*'
DisplayCopNames: true
BlockDelimiters:
EnforcedStyle: semantic
Metrics/LineLength:
Max: 100
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/GlobalVars:
Enabled: false
Style/SingleSpaceBeforeFirstArg:
Enabled: false
Lint/HandleExceptions:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment