Created
April 6, 2019 18:20
-
-
Save sohocoke/fe809557d38ce2b236642fae1647f0de to your computer and use it in GitHub Desktop.
My default 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
# i hope the default rubocop settings are designed to have everything | |
# turned on so you become aware of their existence, rather than someone's idea | |
# of how linting can prevent monkeys from attempting to type in Shakespear on | |
# a programmer's keyboard. | |
# | |
# changing default config to turn off all the warnings with low or no value. | |
Layout/TrailingWhitespace: | |
Enabled: false | |
Layout/SpaceAfterComma: | |
Enabled: false | |
Layout/ExtraSpacing: | |
Enabled: false | |
Layout/StringLiterals: | |
Enabled: false | |
Layout/CommentedKeyword: | |
Enabled: false | |
Layout/LineLength: | |
Enabled: false | |
Layout/EmptyLines: | |
Enabled: false | |
Layout/BlockDelimiters: | |
Enabled: false | |
Layout/TrailingCommaInHashLiteral: | |
Enabled: false | |
Layout/TrailingCommaInArrayLiteral: | |
Enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment