Skip to content

Instantly share code, notes, and snippets.

@sohocoke
Created April 6, 2019 18:20
Show Gist options
  • Save sohocoke/fe809557d38ce2b236642fae1647f0de to your computer and use it in GitHub Desktop.
Save sohocoke/fe809557d38ce2b236642fae1647f0de to your computer and use it in GitHub Desktop.
My default rubocop config
# 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