forked from bkroeker/temporal_tables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
42 lines (37 loc) · 774 Bytes
/
.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
require:
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRubyVersion: 3.2
NewCops: disable
Gemspec/RequiredRubyVersion:
Exclude:
- 'temporal_tables.gemspec'
Rails/ApplicationRecord:
Enabled: false
RSpec/DescribedClass:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/ExampleWording:
Enabled: false
RSpec/InstanceVariable:
Exclude:
- spec/basic_history_spec.rb
RSpec/MultipleDescribes:
Exclude:
- spec/basic_history_spec.rb
RSpec/MultipleExpectations:
Enabled: false
RSpec/MultipleMemoizedHelpers:
Enabled: false
RSpec/NestedGroups:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/HashSyntax:
EnforcedShorthandSyntax: never
Style/SymbolArray:
Enabled: false