Created
June 17, 2014 17:57
-
-
Save johnallen3d/3f161b9cd66299026946 to your computer and use it in GitHub Desktop.
Connexio Labs Standard Rubocop Config
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: | |
Excludes: | |
- vendor/** | |
- bin/** | |
- config/puma* | |
Documentation: | |
# don't require classes to be documented | |
Enabled: false | |
Encoding: | |
# no need to always specify encoding | |
Enabled: false | |
LineLength: | |
# just one more character please | |
Max: 80 | |
AlignParameters: | |
# allow for multi-line methods to have normal indentation | |
EnforcedStyle: with_fixed_indentation | |
ClassAndModuleChildren: | |
# ok to use compact style when modules are predefined | |
Enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment