Created
November 12, 2014 05:12
-
-
Save 164c/9e4a6ed3bf6b20b873cf to your computer and use it in GitHub Desktop.
.rubocop.yml
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: | |
Include: | |
- '**/Rakefile' | |
- '**/config.ru' | |
Exclude: | |
- 'db/**/*' | |
- 'config/**/*' | |
- 'script/**/*' | |
- 'bin/**/*' | |
- 'vendor/bundle/**/*' | |
- !ruby/regexp /old_and_unused\.rb$/ | |
RunRailsCops: true | |
CaseIndentation: | |
# Valid values are: case, end | |
IndentWhenRelativeTo: case | |
IndentOneStep: true | |
Metrics/LineLength: | |
Enabled: false | |
Style/Documentation: | |
Enabled: false | |
Style/AsciiComments: | |
Enabled: false | |
Metrics/MethodLength: | |
Enabled: false | |
Style/SignalException: | |
Enabled: false | |
Metrics/ParameterLists: | |
Enabled: false | |
Style/RedundantSelf: | |
Enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment