-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
74 lines (54 loc) · 1.21 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
AllCops:
TargetRubyVersion: 2.6
Exclude:
- 'vendor/**/*'
- 'node_modules/**/*'
- spec/rails_helper.rb
- spec/spec_helper.rb
- bin/**/*
- spec/dummy/bin/**/*
- spec/dummy/db/migrate/*
- spec/dummy/db/schema.rb
DisplayCopNames: true
Metrics/BlockLength:
Exclude:
- spec/**/*
Rails:
Enabled: true
Rails/FilePath:
Enabled: false
Style/Documentation:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Layout/IndentationConsistency:
EnforcedStyle: indented_internal_methods
Lint/AmbiguousBlockAssociation:
Exclude:
- "spec/**/*"
Layout/IndentFirstHashElement:
EnforcedStyle: 'consistent'
Layout/AlignParameters:
EnforcedStyle: 'with_fixed_indentation'
Layout/SpaceInsideBlockBraces:
SpaceBeforeBlockParameters: false
Style/BracesAroundHashParameters:
EnforcedStyle: context_dependent
Layout/IndentFirstArgument:
EnforcedStyle: consistent
Metrics/LineLength:
Max: 128
AllowURI: true
URISchemes:
- http
- https
Exclude:
- classnames-rails-view.gemspec
- spec/dummy/config/**/*
- spec/dummy/Rakefile
Metrics/MethodLength:
Max: 20
Naming/FileName:
Exclude:
- 'lib/classnames-rails-view.rb'