-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.rubocop_todo.yml
89 lines (77 loc) · 2.26 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2020-08-29 16:12:35 UTC using RuboCop version 0.89.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: 1
# Configuration parameters: Include.
# Include: **/*.gemspec
Gemspec/RequiredRubyVersion:
Exclude:
- 'rgeo-proj4.gemspec'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, IndentationWidth.
# SupportedStyles: with_first_argument, with_fixed_indentation
Layout/ArgumentAlignment:
Exclude:
- 'test/coord_sys/proj4_srs_data_test.rb'
# Offense count: 1
# Cop supports --auto-correct.
Lint/AmbiguousRegexpLiteral:
Exclude:
- 'Rakefile'
# Offense count: 3
# Configuration parameters: AllowComments.
Lint/EmptyWhen:
Exclude:
- 'test/common/polygon_tests.rb'
# Offense count: 2
Lint/UselessAssignment:
Exclude:
- 'ext/proj4_c_impl/extconf.rb'
# Offense count: 26
# Configuration parameters: IgnoredMethods.
Metrics/AbcSize:
Max: 40
# Offense count: 1
Naming/AccessorMethodName:
Exclude:
- 'lib/rgeo/coord_sys/proj4.rb'
# Offense count: 1
Naming/BinaryOperatorParameterName:
Exclude:
- 'lib/rgeo/coord_sys/proj4.rb'
# Offense count: 6
Security/MarshalLoad:
Exclude:
- 'test/common/factory_tests.rb'
- 'test/common/line_string_tests.rb'
- 'test/common/point_tests.rb'
- 'test/coord_sys/proj4_test.rb'
# Offense count: 2
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'lib/rgeo/coord_sys/proj4.rb'
- 'lib/rgeo/coord_sys/srs_database/proj4_data.rb'
# Offense count: 5
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: always, always_true, never
Style/FrozenStringLiteralComment:
Exclude:
- 'Gemfile'
- 'Rakefile'
- 'bin/console'
- 'ext/proj4_c_impl/extconf.rb'
- 'rgeo-proj4.gemspec'
# Offense count: 27
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Max: 264