Skip to content

Commit 7df97a7

Browse files
authored
rubocop.yml: Disable some cops locally that aren't in the styleguide
- This config applies only to this repo, it's not the global config.
1 parent 1b549a3 commit 7df97a7

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.rubocop.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
inherit_from: ./config/default.yml
22

3+
AllCops:
4+
SuggestExtensions: false
5+
6+
Gemspec/RequiredRubyVersion:
7+
Enabled: false
8+
9+
Lint/AssignmentInCondition:
10+
Enabled: false
11+
12+
Lint/EmptyConditionalBody:
13+
Enabled: false
14+
15+
Lint/UselessAssignment:
16+
Enabled: false
17+
318
Naming/FileName:
419
Enabled: true
520
Exclude:
621
- "rubocop-github.gemspec"
22+
23+
Style/Documentation:
24+
Enabled: false
25+
26+
Style/GuardClause:
27+
Enabled: false
28+
29+
Style/Next:
30+
Enabled: false
31+
32+
Style/SoleNestedConditional:
33+
Enabled: false

0 commit comments

Comments
 (0)