-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop_todo.yml
45 lines (40 loc) · 1.42 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2020-04-13 17:55:59 +0200 using RuboCop version 0.81.0.
# 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: 9
# Configuration parameters: CountComments, ExcludedMethods.
# ExcludedMethods: refine
Metrics/BlockLength:
Max: 173
# Offense count: 2
# Configuration parameters: ForbiddenDelimiters.
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
Naming/HeredocDelimiterNaming:
Exclude:
- 'lib/docparser/output/html_output.rb'
# Offense count: 16
Security/Open:
Exclude:
- 'lib/docparser/document.rb'
- 'lib/docparser/output.rb'
- 'test/lib/docparser/document_test.rb'
- 'test/lib/docparser/output/csv_output_test.rb'
- 'test/lib/docparser/output/html_output_test.rb'
- 'test/lib/docparser/output/json_output_test.rb'
- 'test/lib/docparser/output/multi_output_test.rb'
- 'test/lib/docparser/output/yaml_output_test.rb'
# Offense count: 4
# Configuration parameters: EnforcedStyle.
# SupportedStyles: annotated, template, unannotated
Style/FormatStringToken:
Exclude:
- 'lib/docparser/output.rb'
- 'lib/docparser/parser.rb'
# Offense count: 1
Style/MixinUsage:
Exclude:
- 'example.rb'