-
Notifications
You must be signed in to change notification settings - Fork 14
/
.rubocop.yml
74 lines (64 loc) · 1.31 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
require:
- rubocop-rails
- rubocop-rake
inherit_gem:
rubocop-inst:
- rubocop.yml
- rubocop-rspec.yml # if you use rspec and rubocop-rspec
AllCops:
TargetRubyVersion: 2.7
Exclude:
- gemfiles/* # auto-generated by Appraisal
Bundler/DuplicatedGem:
Enabled: false
# migrations have some triggers with really long lines we can't really do anything about
# (and the newlines are important)
Layout/LineLength:
Exclude:
- db/migrate/*
Rails/SquishedSQLHeredocs:
Exclude:
- db/migrate/*
Naming/FileName:
Exclude:
- lib/inst-jobs.rb
Rails/ApplicationRecord:
Enabled: false
Rails/Exit:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
Rails/Output:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
RSpec/AnyInstance:
Enabled: false
RSpec/BeforeAfterAll:
Enabled: false
RSpec/ContextWording:
Enabled: false
RSpec/IndexedLet:
Enabled: false
RSpec/InstanceVariable:
Enabled: false
RSpec/LetSetup:
Enabled: false
RSpec/MultipleMemoizedHelpers:
Enabled: false
RSpec/NamedSubject:
Enabled: false
RSpec/SubjectStub:
Enabled: false
RSpec/VerifiedDoubles:
Enabled: false
Security/MarshalLoad:
Enabled: false
Security/YAMLLoad:
Enabled: false
Style/Documentation:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/SpecialGlobalVars:
Enabled: false