forked from NigelThorne/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.reek.yml
38 lines (38 loc) · 808 Bytes
/
.reek.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
---
detectors:
TooManyStatements:
enabled: true
max_statements: 8
DuplicateMethodCall:
max_calls: 2
FeatureEnvy:
exclude:
- "RubyX::RubyCompiler"
- "Risc::Interpreter"
- "Risc::TextWriter"
- "Arm::Translator"
TooManyMethods:
max_methods: 30
exclude:
- "RubyX::RubyCompiler"
- "Ruby::RubyCompiler"
- "Risc::Interpreter"
- "Risc::TextWriter"
- "Arm::Translator"
- "Util::List"
UtilityFunction:
exclude:
- "RubyX::RubyCompiler"
- "Risc::Interpreter"
- "Risc::TextWriter"
- "Arm::Translator"
UncommunicativeMethodName:
exclude:
- "RubyX::RubyCompiler"
- "Risc::TextWriter"
- "Risc::Interpreter"
- "Arm::Translator"
exclude_paths:
- test
- vendor
- stash