Skip to content

Commit 0b5b272

Browse files
authored
Merge pull request #26 from glennsarti/fix-for-rubocop
Apply fixes for rubocop
2 parents d23b346 + 5caa136 commit 0b5b272

22 files changed

+753
-1172
lines changed

server/.rubocop.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,24 @@ AllCops:
1414
Style/Documentation:
1515
Enabled: false
1616

17-
# Line length is not useful
17+
# Length is not useful indicator
1818
Metrics/LineLength:
1919
Enabled: false
20-
20+
Metrics/MethodLength:
21+
Enabled: false
22+
Metrics/ModuleLength:
23+
Enabled: false
24+
Metrics/ClassLength:
25+
Enabled: false
26+
Metrics/BlockLength:
27+
Enabled: false
28+
Metrics/AbcSize:
29+
Enabled: false
30+
Metrics/PerceivedComplexity:
31+
Enabled: false
32+
Metrics/CyclomaticComplexity:
33+
Enabled: false
34+
2135
# Empty method definitions over more than one line is ok
2236
Style/EmptyMethod:
2337
Enabled: false

0 commit comments

Comments
 (0)