blob: 66b5abed75ba989e5a5fb01864714ec89e9c63d7 (
plain)
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
|
inherit_from: .rubocop_todo.yml
require:
- rubocop-performance
- rubocop-rails
AllCops:
TargetRubyVersion: 2.5
TargetRailsVersion: 6.0
Exclude:
- vendor/**/*
Rails:
Enabled: true
Style/FormatString:
Enabled: false
Style/Documentation:
Enabled: false
Style/PerlBackrefs:
Enabled: false
Metrics/ModuleLength:
Max: 200
Metrics/ClassLength:
Max: 200
Naming/MethodParameterName:
AllowedNames:
- io
- id
- to
- by
- on
- in
- at
- ip
- db
- n
- q
|