blob: dd8db6af3a8e51f05a9cdaa428c2909199a87cb6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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
|