mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
80e819586b
I think these are meant to be in the root directory, not in
`/activerecord`? 😬
r? @sgrif
[ci skip]
27 lines
573 B
YAML
27 lines
573 B
YAML
AllCops:
|
|
TargetRubyVersion: 2.3
|
|
DisabledByDefault: true
|
|
|
|
# Two spaces, no tabs (for indentation).
|
|
Style/IndentationWidth:
|
|
enabled: true
|
|
|
|
# No trailing whitespace.
|
|
Style/TrailingWhitespace:
|
|
enabled: true
|
|
|
|
# Blank lines should not have any spaces.
|
|
Style/TrailingBlankLines:
|
|
enabled: true
|
|
|
|
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
|
|
Style/HashSyntax:
|
|
enabled: true
|
|
|
|
# Prefer &&/|| over and/or.
|
|
Style/AndOr:
|
|
enabled: true
|
|
|
|
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
|
Lint/RequireParentheses:
|
|
enabled: true
|