Last active
September 7, 2017 07:19
-
-
Save slenderock/139c14fedce6cd977c99ae6fa7e294f6 to your computer and use it in GitHub Desktop.
Rubocop config
This file contains hidden or 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: | |
- 'vendor/**/*' | |
- 'tmp/**/*' | |
- 'db/**/*' | |
- 'vendor/**/*' | |
- 'bin/**/*' | |
- '**/script/**/*' | |
- 'config/initializers/*' | |
Metrics/ModuleLength: | |
Exclude: | |
- "**/*_spec.rb" | |
Metrics/BlockLength: | |
Exclude: | |
- "**/*_spec.rb" | |
Documentation: | |
Enabled: false | |
Style/FrozenStringLiteralComment: | |
Enabled: false | |
Style/ClassAndModuleChildren: | |
Enabled: false | |
Style/FileName: | |
Enabled: false | |
Style/ModuleFunction: | |
Enabled: false | |
Style/Encoding: | |
Enabled: false | |
Metrics/MethodLength: | |
Enabled: false | |
Metrics/LineLength: | |
Max: 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment