]> git.openstreetmap.org Git - rails.git/blob - .rubocop_todo.yml
Allow administrators to unhide diary entries, if they wish
[rails.git] / .rubocop_todo.yml
1 # This configuration was generated by
2 # `rubocop --auto-gen-config`
3 # on 2019-06-05 09:04:25 +0100 using RuboCop version 0.71.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 # Offense count: 33
10 # Configuration parameters: AllowSafeAssignment.
11 Lint/AssignmentInCondition:
12   Exclude:
13     - 'app/controllers/api/traces_controller.rb'
14     - 'app/controllers/api/user_preferences_controller.rb'
15     - 'app/controllers/application_controller.rb'
16     - 'app/controllers/geocoder_controller.rb'
17     - 'app/controllers/notes_controller.rb'
18     - 'app/controllers/traces_controller.rb'
19     - 'app/controllers/users_controller.rb'
20     - 'app/helpers/application_helper.rb'
21     - 'app/helpers/browse_tags_helper.rb'
22     - 'app/mailers/notifier.rb'
23     - 'app/models/client_application.rb'
24     - 'lib/nominatim.rb'
25     - 'lib/osm.rb'
26     - 'script/deliver-message'
27
28 # Offense count: 4
29 # Configuration parameters: AllowComments.
30 Lint/HandleExceptions:
31   Exclude:
32     - 'app/controllers/api/amf_controller.rb'
33     - 'app/controllers/users_controller.rb'
34
35 # Offense count: 703
36 Metrics/AbcSize:
37   Max: 279
38
39 # Offense count: 40
40 # Configuration parameters: CountComments, ExcludedMethods.
41 # ExcludedMethods: refine
42 Metrics/BlockLength:
43   Max: 71
44
45 # Offense count: 15
46 # Configuration parameters: CountBlocks.
47 Metrics/BlockNesting:
48   Max: 5
49
50 # Offense count: 68
51 # Configuration parameters: CountComments.
52 Metrics/ClassLength:
53   Max: 1397
54
55 # Offense count: 73
56 Metrics/CyclomaticComplexity:
57   Max: 22
58
59 # Offense count: 714
60 # Configuration parameters: CountComments, ExcludedMethods.
61 Metrics/MethodLength:
62   Max: 179
63
64 # Offense count: 1
65 # Configuration parameters: CountComments.
66 Metrics/ModuleLength:
67   Max: 107
68
69 # Offense count: 4
70 # Configuration parameters: CountKeywordArgs.
71 Metrics/ParameterLists:
72   Max: 9
73
74 # Offense count: 71
75 Metrics/PerceivedComplexity:
76   Max: 25
77
78 # Offense count: 6
79 Naming/AccessorMethodName:
80   Exclude:
81     - 'app/controllers/application_controller.rb'
82     - 'app/helpers/title_helper.rb'
83     - 'app/models/old_way.rb'
84     - 'lib/osm.rb'
85     - 'lib/potlatch.rb'
86
87 # Offense count: 8
88 # Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist, MethodDefinitionMacros.
89 # NamePrefix: is_, has_, have_
90 # NamePrefixBlacklist: is_, has_, have_
91 # NameWhitelist: is_a?
92 # MethodDefinitionMacros: define_method, define_singleton_method
93 Naming/PredicateName:
94   Exclude:
95     - 'spec/**/*'
96     - 'app/models/changeset.rb'
97     - 'app/models/old_node.rb'
98     - 'app/models/old_relation.rb'
99     - 'app/models/old_way.rb'
100     - 'app/models/user.rb'
101     - 'lib/classic_pagination/pagination.rb'
102
103 # Offense count: 6
104 # Configuration parameters: Database, Include.
105 # SupportedDatabases: mysql, postgresql
106 # Include: db/migrate/*.rb
107 Rails/BulkChangeTable:
108   Exclude:
109     - 'db/migrate/20111116184519_update_oauth.rb'
110     - 'db/migrate/20120208122334_merge_acl_address_and_mask.rb'
111     - 'db/migrate/20120208194454_add_domain_to_acl.rb'
112     - 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
113
114 # Offense count: 2
115 # Configuration parameters: Include.
116 # Include: app/models/**/*.rb
117 Rails/HasAndBelongsToMany:
118   Exclude:
119     - 'app/models/changeset.rb'
120     - 'app/models/user.rb'
121
122 # Offense count: 11
123 # Configuration parameters: Include.
124 # Include: app/helpers/**/*.rb
125 Rails/HelperInstanceVariable:
126   Exclude:
127     - 'app/helpers/application_helper.rb'
128     - 'app/helpers/title_helper.rb'
129     - 'app/helpers/trace_helper.rb'
130
131 # Offense count: 5
132 # Configuration parameters: Include.
133 # Include: db/migrate/*.rb
134 Rails/NotNullColumn:
135   Exclude:
136     - 'db/migrate/002_cleanup_osm_db.rb'
137     - 'db/migrate/020_populate_node_tags_and_remove.rb'
138     - 'db/migrate/021_move_to_innodb.rb'
139     - 'db/migrate/025_add_end_time_to_changesets.rb'
140     - 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
141
142 # Offense count: 18
143 Rails/OutputSafety:
144   Exclude:
145     - 'app/controllers/users_controller.rb'
146     - 'app/helpers/application_helper.rb'
147     - 'app/helpers/changesets_helper.rb'
148     - 'app/helpers/geocoder_helper.rb'
149     - 'app/helpers/note_helper.rb'
150     - 'app/helpers/open_graph_helper.rb'
151     - 'app/helpers/user_blocks_helper.rb'
152     - 'lib/rich_text.rb'
153     - 'test/helpers/application_helper_test.rb'
154
155 # Offense count: 94
156 # Cop supports --auto-correct.
157 # Configuration parameters: EnforcedStyle.
158 # SupportedStyles: strict, flexible
159 Rails/TimeZone:
160   Enabled: false
161
162 # Offense count: 1
163 # Configuration parameters: AllowedChars.
164 Style/AsciiComments:
165   Exclude:
166     - 'test/models/message_test.rb'
167
168 # Offense count: 255
169 Style/Documentation:
170   Enabled: false
171
172 # Offense count: 503
173 # Cop supports --auto-correct.
174 # Configuration parameters: EnforcedStyle.
175 # SupportedStyles: always, never
176 Style/FrozenStringLiteralComment:
177   Enabled: false
178
179 # Offense count: 2
180 # Cop supports --auto-correct.
181 Style/IfUnlessModifier:
182   Exclude:
183     - 'app/controllers/api/ways_controller.rb'
184
185 # Offense count: 74
186 # Cop supports --auto-correct.
187 # Configuration parameters: Strict.
188 Style/NumericLiterals:
189   MinDigits: 11
190
191 # Offense count: 3320
192 # Cop supports --auto-correct.
193 # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
194 # URISchemes: http, https
195 Metrics/LineLength:
196   Max: 1073