Last active
July 17, 2019 18:13
-
-
Save gerardosandoval/e58b5e0ddc180cacd608a99783810822 to your computer and use it in GitHub Desktop.
Rubocop configuration
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
Metrics/LineLength: | |
Description: 'Limit lines to 120 characters.' | |
StyleGuide: '#120-character-limits' | |
Enabled: true | |
Max: 120 | |
Metrics/ClassLength: | |
Enabled: false | |
Metrics/AbcSize: | |
Enabled: false | |
Metrics/MethodLength: | |
Enabled: false | |
Style/ConditionalAssignment: | |
Enabled: false | |
Style/AsciiComments: | |
Enabled: false | |
Style/StringLiterals: | |
Enabled: false | |
Layout/LeadingCommentSpace: | |
Enabled: false | |
Documentation: | |
Enabled: false | |
FrozenStringLiteralComment: | |
Enabled: false | |
Layout/AlignHash: | |
Enabled: false | |
Rails: | |
Enabled: true | |
Naming/MemoizedInstanceVariableName: | |
Enabled: false | |
Layout/SpaceBeforeBlockBraces: | |
Enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment