This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
.rubocop.yml
105 lines (83 loc) · 2.36 KB
/
.rubocop.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Ruby linting configuration.
# We only worry about two kinds of issues: 'error' and anything less than that.
# Error is not about severity, but about taste. Simple style choices that
# never have a great excuse to be broken, such as 1.9 JSON-like hash syntax,
# are errors. Choices that tend to have good exceptions in practice, such as
# line length, are warnings.
# If you'd like to make changes, a full list of available issues is at
# https://github.com/bbatsov/rubocop/blob/master/config/enabled.yml
# A list of configurable issues is at:
# https://github.com/bbatsov/rubocop/blob/master/config/default.yml
#
# If you disable a check, document why.
StringLiterals:
EnforcedStyle: double_quotes
Severity: error
HashSyntax:
EnforcedStyle: hash_rockets
Severity: error
Exclude:
- !ruby/regexp /db\/schema.rb/
AlignHash:
SupportedLastArgumentHashStyles: always_ignore
AlignParameters:
Enabled: false # This is usually true, but we often want to roll back to
# the start of a line.
Attr:
Enabled: false # We have no styleguide guidance here, and it seems to be
# in frequent use.
ClassAndModuleChildren:
Enabled: false # module X<\n>module Y is just as good as module X::Y.
Documentation:
Exclude:
- !ruby/regexp /spec\/*\/*/
ClassLength:
Max: 145
Exclude:
- !ruby/regexp /spec\/*\/*/
PercentLiteralDelimiters:
PreferredDelimiters:
'%w': '{}'
LineLength:
Max: 158
Severity: warning
MultilineTernaryOperator:
Severity: error
UnreachableCode:
Severity: error
AndOr:
Severity: error
EndAlignment:
Severity: error
IndentationWidth:
Severity: error
MethodLength:
CountComments: false # count full line comments?
Max: 25
Severity: error
Alias:
Enabled: false # We have no guidance on alias vs alias_method
RedundantSelf:
Enabled: false # Sometimes a self.field is a bit more clear
IfUnlessModifier:
Enabled: false
AllCops:
# Include gemspec and Rakefile
Include:
- '**/*.gemspec'
- '**/*.rake'
- '**/Gemfile'
- '**/Rakefile'
- '**/Capfile'
- '**/Guardfile'
- '**/Podfile'
- '**/Vagrantfile'
Exclude:
- 'db/**/*'
- 'bin/*'
- 'script/**/*'
- 'config/**/*'
- 'vendor/**/*'
# By default, the rails cops are not run. Override in project or home
# directory .rubocop.yml files, or by giving the -R/--rails option.
RunRailsCops: false