Created
November 3, 2015 14:29
-
-
Save bryanp/11a79177f846834866e0 to your computer and use it in GitHub Desktop.
Rubocop Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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