]> git.openstreetmap.org Git - rails.git/blob - .rubocop_todo.yml
Update bundle
[rails.git] / .rubocop_todo.yml
1 # This configuration was generated by
2 # `rubocop --auto-gen-config`
3 # on 2021-09-14 19:29:59 UTC using RuboCop version 1.21.0.
4 # The point is for the user to remove these configuration records
5 # one by one as the offenses are removed from the code base.
6 # Note that changes in the inspected code, or installation of new
7 # versions of RuboCop, may require this file to be generated again.
8
9 # Work around erblint issues.
10 # https://github.com/openstreetmap/openstreetmap-website/issues/2472
11 require:
12   - rubocop-minitest
13   - rubocop-performance
14   - rubocop-rails
15   - rubocop-rake
16
17 # Offense count: 524
18 # Cop supports --auto-correct.
19 # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
20 # URISchemes: http, https
21 Layout/LineLength:
22   Max: 270
23
24 # Offense count: 62
25 # Cop supports --auto-correct.
26 Lint/AmbiguousOperatorPrecedence:
27   Exclude:
28     - 'app/controllers/geocoder_controller.rb'
29     - 'app/models/user.rb'
30     - 'lib/bounding_box.rb'
31     - 'lib/osm.rb'
32     - 'lib/rich_text.rb'
33     - 'lib/short_link.rb'
34     - 'test/controllers/api/old_nodes_controller_test.rb'
35     - 'test/lib/short_link_test.rb'
36
37 # Offense count: 34
38 # Configuration parameters: AllowSafeAssignment.
39 Lint/AssignmentInCondition:
40   Exclude:
41     - 'app/controllers/api/traces_controller.rb'
42     - 'app/controllers/api/user_preferences_controller.rb'
43     - 'app/controllers/application_controller.rb'
44     - 'app/controllers/geocoder_controller.rb'
45     - 'app/controllers/notes_controller.rb'
46     - 'app/controllers/traces_controller.rb'
47     - 'app/controllers/users_controller.rb'
48     - 'app/helpers/application_helper.rb'
49     - 'app/helpers/browse_tags_helper.rb'
50     - 'app/mailers/user_mailer.rb'
51     - 'app/models/client_application.rb'
52     - 'lib/nominatim.rb'
53     - 'lib/osm.rb'
54     - 'script/deliver-message'
55
56 # Offense count: 8
57 # Configuration parameters: IgnoreLiteralBranches, IgnoreConstantBranches.
58 Lint/DuplicateBranch:
59   Exclude:
60     - 'app/controllers/api_controller.rb'
61     - 'app/controllers/diary_entries_controller.rb'
62     - 'app/controllers/geocoder_controller.rb'
63     - 'app/helpers/browse_tags_helper.rb'
64     - 'lib/password_hash.rb'
65
66 # Offense count: 643
67 # Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
68 Metrics/AbcSize:
69   Max: 189
70
71 # Offense count: 69
72 # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
73 # IgnoredMethods: refine
74 Metrics/BlockLength:
75   Max: 71
76
77 # Offense count: 15
78 # Configuration parameters: CountBlocks.
79 Metrics/BlockNesting:
80   Max: 5
81
82 # Offense count: 25
83 # Configuration parameters: CountComments, CountAsOne.
84 Metrics/ClassLength:
85   Max: 337
86
87 # Offense count: 58
88 # Configuration parameters: IgnoredMethods.
89 Metrics/CyclomaticComplexity:
90   Max: 25
91
92 # Offense count: 716
93 # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
94 Metrics/MethodLength:
95   Max: 179
96
97 # Offense count: 1
98 # Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
99 Metrics/ParameterLists:
100   Max: 6
101
102 # Offense count: 62
103 # Configuration parameters: IgnoredMethods.
104 Metrics/PerceivedComplexity:
105   Max: 26
106
107 # Offense count: 528
108 Minitest/MultipleAssertions:
109   Max: 54
110
111 # Offense count: 3
112 Naming/AccessorMethodName:
113   Exclude:
114     - 'app/controllers/application_controller.rb'
115     - 'app/helpers/title_helper.rb'
116     - 'lib/osm.rb'
117
118 # Offense count: 8
119 # Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
120 # NamePrefix: is_, has_, have_
121 # ForbiddenPrefixes: is_, has_, have_
122 # AllowedMethods: is_a?
123 # MethodDefinitionMacros: define_method, define_singleton_method
124 Naming/PredicateName:
125   Exclude:
126     - 'app/models/changeset.rb'
127     - 'app/models/old_node.rb'
128     - 'app/models/old_relation.rb'
129     - 'app/models/old_way.rb'
130     - 'app/models/user.rb'
131     - 'lib/classic_pagination/pagination.rb'
132
133 # Offense count: 5
134 # Configuration parameters: Database, Include.
135 # SupportedDatabases: mysql, postgresql
136 # Include: db/migrate/*.rb
137 Rails/BulkChangeTable:
138   Exclude:
139     - 'db/migrate/20111116184519_update_oauth.rb'
140     - 'db/migrate/20120208194454_add_domain_to_acl.rb'
141     - 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
142
143 # Offense count: 2
144 # Configuration parameters: Include.
145 # Include: app/models/**/*.rb
146 Rails/HasAndBelongsToMany:
147   Exclude:
148     - 'app/models/changeset.rb'
149     - 'app/models/user.rb'
150
151 # Offense count: 3
152 # Configuration parameters: Include.
153 # Include: app/helpers/**/*.rb
154 Rails/HelperInstanceVariable:
155   Exclude:
156     - 'app/helpers/title_helper.rb'
157
158 # Offense count: 1
159 # Configuration parameters: Include.
160 # Include: app/controllers/**/*.rb
161 Rails/LexicallyScopedActionFilter:
162   Exclude:
163     - 'app/controllers/oauth2_applications_controller.rb'
164
165 # Offense count: 5
166 # Configuration parameters: Include.
167 # Include: db/migrate/*.rb
168 Rails/NotNullColumn:
169   Exclude:
170     - 'db/migrate/002_cleanup_osm_db.rb'
171     - 'db/migrate/020_populate_node_tags_and_remove.rb'
172     - 'db/migrate/021_move_to_innodb.rb'
173     - 'db/migrate/025_add_end_time_to_changesets.rb'
174     - 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
175
176 # Offense count: 9
177 Rails/OutputSafety:
178   Exclude:
179     - 'app/controllers/sessions_controller.rb'
180     - 'app/controllers/users_controller.rb'
181     - 'app/helpers/application_helper.rb'
182     - 'lib/rich_text.rb'
183     - 'test/helpers/application_helper_test.rb'
184
185 # Offense count: 91
186 # Cop supports --auto-correct.
187 # Configuration parameters: EnforcedStyle.
188 # SupportedStyles: strict, flexible
189 Rails/TimeZone:
190   Enabled: false
191
192 # Offense count: 6
193 # Cop supports --auto-correct.
194 Rake/Desc:
195   Exclude:
196     - 'lib/tasks/auto_annotate_models.rake'
197     - 'lib/tasks/eslint.rake'
198     - 'lib/tasks/subscribe_diary_authors.rake'
199     - 'lib/tasks/subscribe_old_changesets.rake'
200
201 # Offense count: 602
202 # Cop supports --auto-correct.
203 # Configuration parameters: EnforcedStyle.
204 # SupportedStyles: always, always_true, never
205 Style/FrozenStringLiteralComment:
206   Enabled: false
207
208 # Offense count: 73
209 # Cop supports --auto-correct.
210 # Configuration parameters: Strict.
211 Style/NumericLiterals:
212   MinDigits: 15