-
Notifications
You must be signed in to change notification settings - Fork 21
/
.rubocop.yml
96 lines (73 loc) · 1.49 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
89
90
91
92
93
94
95
96
inherit_from: .rubocop_todo.yml
require:
- rubocop-packaging
- rubocop-performance
- rubocop-rails
- rubocop-rake
- rubocop-rspec
AllCops:
NewCops: enable
TargetRailsVersion: 7.0
TargetRubyVersion: 3.0
Exclude:
- .git/**/*
- .github/**/*
- bin/**/*
- gemfiles/**/*
- node_modules/**/*
- tmp/**/*
- vendor/**/*
Layout/LineLength:
Enabled: false
Lint/MissingSuper:
Exclude:
- 'spec/**/*'
Metrics/AbcSize:
Exclude:
- 'spec/**/*'
Metrics/BlockLength:
Exclude:
- 'chrono_model.gemspec'
- 'spec/**/*'
Metrics/MethodLength:
Exclude:
- 'spec/**/*'
Naming/MethodName:
AllowedPatterns:
- '_INSERT_'
- '_UPDATE_'
- '_DELETE_'
Naming/PredicateName:
Enabled: false
Rails/ApplicationRecord:
Enabled: false
Rails/Date:
Enabled: false
Rails/FilePath:
Enabled: false
Rails/RakeEnvironment:
Enabled: false
Rails/SkipsModelValidations:
AllowedMethods: ['touch', 'touch_all', 'update_column', 'update_columns']
Rails/TimeZone:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
RSpec/NestedGroups:
Enabled: false
RSpec/SpecFilePathFormat:
Enabled: false
Style/ArgumentsForwarding:
Enabled: false
Style/GlobalVars:
Exclude:
- 'spec/**/*'
# NOTE: This cop is enabled by RuboCop Rails, because active support adds this
# method to hash, but `except` is not available in specs
Style/HashExcept:
Exclude:
- 'spec/**/*'
Style/IfUnlessModifier:
Enabled: false