-
-
Save adarsh/46679c2f5813496705fe to your computer and use it in GitHub Desktop.
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