-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
66 lines (57 loc) · 1.9 KB
/
.rubocop_todo.yml
File metadata and controls
66 lines (57 loc) · 1.9 KB
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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-08-26 13:50:06 UTC using RuboCop version 1.30.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: 12
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 49
# Offense count: 2
# Configuration parameters: CountComments, CountAsOne.
Metrics/ClassLength:
Max: 249
# Offense count: 12
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 42
# Offense count: 8
Minitest/MultipleAssertions:
Max: 7
# Offense count: 2
Naming/AccessorMethodName:
Exclude:
- 'lib/oauth/tty/commands/authorize_command.rb'
# Offense count: 2
# Configuration parameters: ForbiddenDelimiters.
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
Naming/HeredocDelimiterNaming:
Exclude:
- 'lib/oauth/tty/commands/help_command.rb'
- 'lib/oauth/tty/commands/sign_command.rb'
# Offense count: 1
Security/Open:
Exclude:
- 'lib/oauth/tty/command.rb'
# Offense count: 9
# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- '**/*.md'
- '**/*.markdown'
- 'lib/oauth/tty/cli.rb'
- 'lib/oauth/tty/command.rb'
- 'lib/oauth/tty/commands/authorize_command.rb'
- 'lib/oauth/tty/commands/help_command.rb'
- 'lib/oauth/tty/commands/query_command.rb'
- 'lib/oauth/tty/commands/sign_command.rb'
- 'lib/oauth/tty/commands/version_command.rb'
- 'test/backwards_compatibility_test.rb'
- 'test/cli_test.rb'
# Offense count: 1
# Configuration parameters: MinBodyLength, AllowConsecutiveConditionals.
Style/GuardClause:
Exclude:
- 'lib/oauth/tty/commands/sign_command.rb'