-
Notifications
You must be signed in to change notification settings - Fork 15
/
.rubocop.yml
103 lines (71 loc) · 1.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
require:
- rubocop-rake
AllCops:
TargetRubyVersion: 2.7
NewCops: enable
# Things I actually prefer or need
# I prefer the negated if arrangement here.
Style/NegatedIfElseCondition:
Exclude:
- 'test/test_ronn.rb'
# I don't really understand what this means, so just turn it off for now.
Gemspec/DevelopmentDependencies:
Exclude:
- 'ronn-ng.gemspec'
# The roff output code is twisty; don't complain about it.
Lint/DuplicateBranch:
Exclude:
- 'lib/ronn/roff.rb'
# To get fixed
Layout/LineLength:
Enabled: false
Layout/HashAlignment:
Enabled: false
Layout/ArgumentAlignment:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Security/Eval:
Enabled: false
# test_ronn_document fails when it uses safe_load
Security/YAMLLoad:
Enabled: false
# lib/ronn/document.rb:377 causes this; I don't know how to fix it, and the code seems
# right to me. Disabling so we can get clean CI runs.
Lint/OutOfRangeRegexpRef:
Enabled: false
# Permanently disabled - I don't care about these.
Layout/EmptyLineAfterGuardClause:
Enabled: false
Metrics/BlockNesting:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/CombinableLoops:
Enabled: false
Style/FormatStringToken:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/RegexpLiteral:
Enabled: false
Style/PerlBackrefs:
Enabled: false
Style/RedundantRegexpCharacterClass:
Enabled: false
Style/Semicolon:
Enabled: false
Style/StringConcatenation:
Enabled: false
Style/WordArray:
Enabled: false