rails/.rubocop.yml

44 lines
837 B
YAML
Raw Normal View History

AllCops:
TargetRubyVersion: 2.3
DisabledByDefault: true
# Two spaces, no tabs (for indentation).
Style/IndentationWidth:
2016-07-20 03:35:11 +00:00
Enabled: true
# No trailing whitespace.
Style/TrailingWhitespace:
2016-07-20 03:35:11 +00:00
Enabled: true
# Blank lines should not have any spaces.
Style/TrailingBlankLines:
2016-07-20 03:35:11 +00:00
Enabled: true
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
Style/HashSyntax:
2016-07-20 03:35:11 +00:00
Enabled: true
# Prefer &&/|| over and/or.
Style/AndOr:
2016-07-20 03:35:11 +00:00
Enabled: true
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
2016-07-20 03:35:11 +00:00
Enabled: true
2016-07-17 07:10:45 +00:00
Style/BracesAroundHashParameters:
2016-07-20 03:35:11 +00:00
Enabled: true
2016-07-17 07:10:45 +00:00
Style/IndentationConsistency:
2016-07-20 03:35:11 +00:00
Enabled: true
2016-07-17 07:10:45 +00:00
EnforcedStyle: rails
Style/EmptyLinesAroundClassBody:
2016-07-20 03:35:11 +00:00
Enabled: true
2016-07-17 07:10:45 +00:00
Style/EmptyLinesAroundModuleBody:
2016-07-20 03:35:11 +00:00
Enabled: true
Lint/EndAlignment:
AlignWith: variable