forked from watir/watir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
85 lines (69 loc) · 1.89 KB
/
.rubocop.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
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.6.8
NewCops: enable
Exclude:
- 'lib/watir/elements/html_elements.rb'
- 'lib/watir/elements/svg_elements.rb'
Layout/LineLength:
Max: 120
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Lint/UnifiedInteger:
Exclude:
- 'lib/watir/locators/element/selector_builder.rb'
# Default: 17
Metrics/AbcSize:
Max: 22
Exclude:
- 'lib/watir/locators/element/selector_builder.rb'
- 'lib/watir/locators/element/selector_builder/*.rb'
- 'lib/watir/generator/base/generator.rb'
- 'spec/locator_spec_helper.rb'
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
- 'support/doctest_helper.rb'
- 'watir.gemspec'
- 'Rakefile'
Metrics/ClassLength:
Max: 93
Exclude:
- 'lib/watir/capabilities.rb'
- 'lib/watir/locators/element/matcher.rb'
- 'lib/watir/locators/element/selector_builder.rb'
- 'lib/watir/locators/element/selector_builder/xpath.rb'
- 'lib/watir/browser.rb'
- 'lib/watir/window.rb'
- 'lib/watir/elements/element.rb'
- 'lib/watir/elements/select.rb'
- 'lib/watir/generator/base/spec_extractor.rb'
- 'lib/watir/element_collection.rb'
# Default: 7
Metrics/CyclomaticComplexity:
Max: 9
Exclude:
- 'lib/watir/locators/element/selector_builder.rb'
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 18
Exclude:
- 'lib/watir/locators/element/selector_builder.rb'
- 'lib/watir/locators/element/selector_builder/xpath.rb'
- 'lib/watir/locators/element/selector_builder/regexp_disassembler.rb'
# Default: 8
Metrics/PerceivedComplexity:
Max: 10
Style/BlockDelimiters:
EnforcedStyle: braces_for_chaining
Style/CommentedKeyword:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/GlobalVars:
AllowedVariables:
- $browser
Style/HashEachMethods:
Enabled: false
Style/OptionalBooleanParameter:
Enabled: false