forked from dominicsayers/machinist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
executable file
·84 lines (71 loc) · 2.29 KB
/
Copy path.rubocop_todo.yml
File metadata and controls
executable file
·84 lines (71 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-05-16 15:42:20 +0100 using RuboCop version 0.48.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
Metrics/AbcSize:
Max: 17
# Offense count: 1
Metrics/CyclomaticComplexity:
Max: 7
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 13
# Offense count: 1
Metrics/PerceivedComplexity:
Max: 8
# Offense count: 1
RSpec/DescribeMethod:
Exclude:
- 'spec/machinist/exceptions_spec.rb'
# Offense count: 17
# Configuration parameters: Max.
RSpec/ExampleLength:
Exclude:
- 'spec/machinist/active_record_spec.rb'
- 'spec/machinist/blueprint_inheritance_spec.rb'
- 'spec/machinist/blueprint_spec.rb'
- 'spec/machinist/machinable_spec.rb'
# Offense count: 2
RSpec/IteratedExpectation:
Exclude:
- 'spec/machinist/blueprint_spec.rb'
- 'spec/machinist/machinable_spec.rb'
# Offense count: 21
RSpec/MultipleExpectations:
Max: 6
# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Style/FileName:
Exclude:
- 'Appraisals'
# Offense count: 1
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: format, sprintf, percent
Style/FormatString:
Exclude:
- 'lib/machinist/blueprint.rb'
# Offense count: 3
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Exclude:
- 'lib/generators/machinist/install/install_generator.rb'
- 'lib/machinist/lathe.rb'
# Offense count: 1
Style/MethodMissing:
Exclude:
- 'lib/machinist/lathe.rb'
# Offense count: 1
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
# NamePrefix: is_, has_, have_
# NamePrefixBlacklist: is_, has_, have_
# NameWhitelist: is_a?
Style/PredicateName:
Exclude:
- 'spec/**/*'
- 'lib/machinist/blueprint.rb'