-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.codeclimate.yml
49 lines (46 loc) · 1.01 KB
/
.codeclimate.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
engines:
rubocop:
enabled: true
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 81
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 14
# Configuration parameters: CountKeywordArgs.
Metrics/ParameterLists:
Max: 6
reek:
enabled: true
UtilityFunction:
exclude:
- RestBaby::Client#header_text
- RestBaby::Client#pretty_xml
ControlParameter:
exclude:
- RestBaby::Client#body_text
DuplicateMethodCall:
exclude:
- RestBaby::Client#print_request
DataClump:
exclude:
- RestBaby::Client
FeatureEnvy:
exclude:
- RestBaby::Client#print_request
InstanceVariableAssumption:
exclude:
- RestBaby::Client
TooManyInstanceVariables:
exclude:
- RestBaby::Client
TooManyStatements:
exclude:
- RestBaby::Client#send_request
ratings:
paths:
- lib/**
- "**.rb"
exclude_paths:
- doc/**/*
- features/**/*