-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
153 lines (126 loc) · 2.78 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
require: rubocop-rspec
AllCops:
# Include gemspec and Rakefile
Include:
- 'app/**/*.rb'
- 'config/**/*.rb'
- 'lib/**/*.rb'
- 'lib/**/*.rake'
- 'spec/**/*.rb'
Exclude:
- 'vendor/**/*'
- 'db/**/*.rb'
- 'bin/**/*'
- 'lib/**/*.rake'
- 'public/uploads/**/*'
DisplayCopNames: true
Metrics/LineLength:
Max: 100
Exclude:
- 'spec/**/*.rb'
- 'config/**/*.rb'
Lint/Debugger:
Exclude:
- 'spec/shared_contexts/shared_features.rb'
RSpec/DescribeClass:
Exclude:
- 'spec/api/**/*.rb'
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- 'app/controllers/api/**/*.rb'
- 'app/models/concerns/**/*.rb'
- 'config/spring.rb'
Style/StringLiterals:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/LineLength:
Max: 100
Exclude:
- 'spec/**/*.rb'
- 'config/**/*.rb'
- 'app/controllers/authorizations_controller.rb'
- 'app/controllers/omniauth_callbacks_controller.rb'
Metrics/AbcSize:
Max: 20
Enabled: false
Metrics/MethodLength:
Max: 15
Enabled: false
Exclude:
- 'spec/**/*.rb'
Metrics/CyclomaticComplexity:
Exclude:
- 'app/models/user.rb'
Lint/HandleExceptions:
Exclude:
- 'config/unicorn/production.rb'
##################### Rails ##################################
Rails/ActionFilter:
EnforcedStyle: action
SupportedStyles:
- action
- filter
Include:
- app/controllers/**/*.rb
Rails/Date:
# The value `strict` disallows usage of `Date.today`, `Date.current`,
# `Date#to_time` etc.
# The value `flexible` allows usage of `Date.current`, `Date.yesterday`, etc
# (but not `Date.today`) which are overridden by ActiveSupport to handle current
# time zone.
EnforcedStyle: flexible
SupportedStyles:
- strict
- flexible
Rails/Exit:
Include:
- app/**/*.rb
- config/**/*.rb
- lib/**/*.rb
Exclude:
- lib/**/*.rake
Rails/FindBy:
Include:
- app/models/**/*.rb
Rails/FindEach:
Include:
- app/models/**/*.rb
Rails/HasAndBelongsToMany:
Include:
- app/models/**/*.rb
Rails/Output:
Include:
- app/**/*.rb
- config/**/*.rb
- db/**/*.rb
- lib/**/*.rb
Rails/ReadWriteAttribute:
Include:
- app/models/**/*.rb
Rails/RequestReferer:
EnforcedStyle: referer
SupportedStyles:
- referer
- referrer
Rails/ScopeArgs:
Include:
- app/models/**/*.rb
Rails/TimeZone:
# The value `strict` means that `Time` should be used with `zone`.
# The value `flexible` allows usage of `in_time_zone` instead of `zone`.
EnforcedStyle: flexible
SupportedStyles:
- strict
- flexible
Rails/UniqBeforePluck:
EnforcedMode: conservative
SupportedModes:
- conservative
- aggressive
AutoCorrect: false
Rails/Validation:
Include:
- app/models/**/*.rb