forked from dry-rb/dry-monads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codeclimate.yml
41 lines (41 loc) · 1001 Bytes
/
.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
engines:
rubocop:
enabled: true
checks:
Rubocop/Style/Documentation:
enabled: false
Rubocop/Style/StringLiterals:
enabled: false
Rubocop/Style/MethodName:
enabled: false
Rubocop/Style/LambdaCall:
enabled: false
Rubocop/Style/StabbyLambdaParentheses:
enabled: false
Rubocop/Style/NestedParenthesizedCalls:
enabled: false
Rubocop/Style/MultilineBlockChain:
enabled: false
Rubocop/Style/GuardClause:
enabled: false
Rubocop/Metrics/LineLength:
enabled: true
max: 110
Rubocop/Style/FileName:
enabled: true
exclude:
- 'lib/dry-monads.rb'
Rubocop/Lint/Debugger:
enabled: true
exclude:
- 'bin/console'
Rubocop/Lint/HandleExceptions:
enabled: true
exclude:
- 'spec/spec_helper.rb'
ratings:
paths:
- lib/**/*.rb
exclude_paths:
- spec/**/*
- examples/**/*