Skip to content

Commit 60c8907

Browse files
committed
Add Rubocop config to project
1 parent 04efbb1 commit 60c8907

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Diff for: .rubocop.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Documentation:
2+
Enabled: false
3+
Metrics/AbcSize:
4+
Enabled: false
5+
Metrics/ClassLength:
6+
Enabled: false
7+
Metrics/MethodLength:
8+
Enabled: false
9+
Metrics/ModuleLength:
10+
Enabled: false
11+
Style/AndOr:
12+
Enabled: false
13+
Style/ClassAndModuleChildren:
14+
Enabled: false
15+
Style/PerlBackrefs:
16+
Enabled: false
17+
18+
Style/CollectionMethods:
19+
Enabled: yes
20+
Lint/LiteralInInterpolation:
21+
Enabled: yes
22+
23+
Metrics/LineLength:
24+
Max: 120
25+
Metrics/ParameterLists:
26+
CountKeywordArgs: false
27+
Style/DotPosition:
28+
EnforcedStyle: trailing
29+
Style/EmptyElse:
30+
EnforcedStyle: empty
31+
Style/SpaceInsideHashLiteralBraces:
32+
EnforcedStyle: no_space

0 commit comments

Comments
 (0)