-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.rubocop.yml
88 lines (85 loc) · 1.7 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
inherit_gem:
rubocop-rails-omakase: rubocop.yml
require:
- rubocop-capybara
- rubocop-factory_bot
- rubocop-performance
- rubocop-rake
- rubocop-rspec
- rubocop-rspec_rails
AllCops:
Exclude:
- bin/*
- db/**/*
- vendor/**/*
- lib/tasks/*
NewCops: enable
TargetRubyVersion: 3.4.1
FactoryBot/ExcessiveCreateList:
Enabled: false
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Layout/LineLength:
Max: 100
Metrics/BlockLength:
Exclude:
- spec/**/*
- app/api/**/*
- config/routes.rb
Metrics/ClassLength:
Max: 250
Metrics/ModuleLength:
Max: 250
RSpec/DescribeClass:
Exclude:
- spec/features/**/*
RSpec/ExampleLength:
Exclude:
- spec/features/**/*
- spec/requests/**/*
RSpec/IndexedLet:
Enabled: false
Rails/EnvironmentVariableAccess:
Enabled: false
Rails/Exit:
Enabled: false
Rails/FilePath:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
Rails/I18nLocaleTexts:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
RSpec/ImplicitSubject:
EnforcedStyle: single_statement_only
RSpec/MultipleExpectations:
Exclude:
- spec/features/**/*
- spec/requests/**/*
Max: 4
Rails/Output:
Enabled: false
Rails/OutputSafety:
Enabled: false
RSpec/MultipleMemoizedHelpers:
Enabled: false
RSpec/NestedGroups:
Max: 4
RSpecRails/HaveHttpStatus: # We use Rack::MockResponse
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/FormatStringToken:
Enabled: false
Style/FrozenStringLiteralComment:
EnforcedStyle: never
Style/HashTransformValues:
Enabled: false
Style/MissingRespondToMissing:
Exclude:
- app/services/**/*