-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.reek.yml
25 lines (25 loc) · 1.08 KB
/
.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
---
detectors:
ControlParameter:
exclude:
- "Jekyll::Favicon::StaticFile::Convertible#write" # overrides Jekyll::StaticFile method
UtilityFunction:
exclude:
- "Jekyll::Favicon::Generator#generate" # overrides Jekyll::Generator method
- "Jekyll::Favicon::Tag#render" # overrides Liquid::Tag method
- "Jekyll::Favicon::Utils::Configuration::Compact::ClassMethods#compact" # TODO: refactor
- "Jekyll::Favicon::Utils::Configuration::Merge::ClassMethods#merge" # TODO: refactor
- "Jekyll::Favicon::Utils::Configuration::Patch::ClassMethods#patch" # TODO: refactor
- "Jekyll::Favicon::Utils::Convert::ClassMethods#convert" # TODO: refactor
- "Jekyll::Favicon::Utils::Tag::ClassMethods#build_element" # TODO: refactor
- "Jekyll::Favicon::Utils::Tag::ClassMethods#build_tag" # TODO: refactor
- "Jekyll::Favicon::Utils::Tag::ClassMethods#mutate_element" # TODO: refactor
NestedIterators:
exclude:
- "fixture"
directories:
"test/unit":
InstanceVariableAssumption:
enabled: false
TooManyMethods:
enabled: false