forked from railsbridge/bridge_troll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo.yml
91 lines (78 loc) · 2.58 KB
/
.rubocop_todo.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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude`
# on 2020-03-29 11:26:15 +0200 using RuboCop version 0.80.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 44
Metrics/AbcSize:
Max: 249
# Offense count: 5
# Configuration parameters: CountComments, Max.
Metrics/ClassLength:
Exclude:
- 'app/controllers/events_controller.rb'
- 'app/controllers/rsvps_controller.rb'
- 'app/models/event.rb'
- 'app/models/rsvp.rb'
- 'db/migrate/20151210035820_init_schema.rb'
# Offense count: 4
# Configuration parameters: Max.
Metrics/CyclomaticComplexity:
Exclude:
- 'app/controllers/rsvps_controller.rb'
- 'app/services/section_arranger.rb'
- 'db/seeds/seed_event.rb'
# Offense count: 62
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
Max: 269
# Offense count: 4
# Configuration parameters: Max.
Metrics/PerceivedComplexity:
Exclude:
- 'app/controllers/rsvps_controller.rb'
- 'app/services/section_arranger.rb'
- 'db/seeds/seed_event.rb'
# Offense count: 78
# Configuration parameters: Prefixes.
# Prefixes: when, with, without
RSpec/ContextWording:
Enabled: false
# Offense count: 167
# Configuration parameters: Max.
RSpec/ExampleLength:
Enabled: false
# Offense count: 212
# Configuration parameters: AssignmentOnly.
RSpec/InstanceVariable:
Exclude:
- 'spec/features/users/sign_in_menu_request_spec.rb'
- 'spec/models/event_spec.rb'
- 'spec/models/rsvp_spec.rb'
- 'spec/models/user_spec.rb'
- 'spec/services/account_merger_spec.rb'
- 'spec/services/event_list_spec.rb'
- 'spec/services/meetup_importer_spec.rb'
# Offense count: 274
# Configuration parameters: AggregateFailuresByDefault.
RSpec/MultipleExpectations:
Max: 16
# Offense count: 97
RSpec/NestedGroups:
Max: 6
# Offense count: 57
# Configuration parameters: Blacklist, Whitelist.
# Blacklist: decrement!, decrement_counter, increment!, increment_counter, toggle!, touch, update_all, update_attribute, update_column, update_columns, update_counters
Rails/SkipsModelValidations:
Enabled: false
# Offense count: 147
Style/Documentation:
Enabled: false
# Offense count: 826
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Max: 259