-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop_todo.yml
76 lines (63 loc) · 1.8 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2020-06-04 20:16:28 +0300 using RuboCop version 0.85.0.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: native, lf, crlf
Layout/EndOfLine:
EnforcedStyle: native
# Configuration parameters: IgnoredMethods.
Metrics/AbcSize:
Enabled: true
Max: 25
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: CountComments, ExcludedMethods.
# ExcludedMethods: refine
Metrics/BlockLength:
CountComments: false
#Max: 47
# Configuration parameters: CountComments.
Metrics/ClassLength:
CountComments: false
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: IgnoredMethods.
Metrics/CyclomaticComplexity:
Enabled: true
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
CountComments: false
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: CountKeywordArgs.
Metrics/ParameterLists:
Enabled: true
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: IgnoredMethods.
Metrics/PerceivedComplexity:
Enabled: true
Exclude:
- lib/quadtree/quadtree.rb
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
# AllowedNames: io, id, to, by, on, in, at, ip, db, os, pp
Naming/MethodParameterName:
Enabled: true
Exclude:
- lib/quadtree/point.rb
# Configuration parameters: AllowedChars.
Style/AsciiComments:
Enabled: true
Exclude:
- lib/quadtree/point.rb
Style/Documentation:
Enabled: true
# Configuration parameters: Strict.
Style/NumericLiterals:
Enabled: true
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Enabled: true