-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01ee31c
commit 3e239b1
Showing
7 changed files
with
81 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,38 @@ | ||
DataClump: | ||
# NOTE: The Prawn API and the functional nature of how the resume is | ||
# generated tends to generate what OO would consider data clumps | ||
exclude: | ||
- "Resume::PDF::Entry::Content" | ||
FeatureEnvy: | ||
# NOTE: Many of the exclusions here are due to reek not being able to see | ||
# `module_function` methods aren't instance methods that need to refer to a | ||
# `self`. | ||
exclude: | ||
- "Resume::PDF::EmploymentHistory#footer" | ||
- "Resume::PDF::Entry::Content#details" | ||
- "Resume::PDF::Entry::Header#formatted_text_box_header" | ||
- "Resume::PDF::Entry::Heading#generate" | ||
- "Resume::PDF::ImageLink#generate" | ||
- "Resume::PDF::TechnicalSkills#generate_table" | ||
IrresponsibleModule: | ||
enabled: false | ||
NestedIterators: | ||
# NOTE: some of the exclusions are here because reek considers | ||
# passing a block to File.open an iterator, which I do not | ||
exclude: | ||
- "Resume::PDF::Document#self.generate" | ||
- "Resume::PDF::Entry::Header#formatted_text_box_header" | ||
- "Resume::PDF::Entry::Header#formatted_text_header" | ||
- "Resume::CLI::FileFetcher#remote_file" | ||
- "Resume::CLI::FontDownloader#self.extract_fonts" | ||
- "Resume::PDF::Document#self.generate" | ||
- "Resume::PDF::Entry::Header#self.formatted_text_box_header" | ||
- "Resume::PDF::Entry::Header#self.formatted_text_header" | ||
TooManyStatements: | ||
exclude: | ||
- "Resume::CLI::Application#self.start" | ||
- "Resume::CLI::ArgumentParser#self.parser" | ||
- "Resume::CLI::FontDownloader#fonts_successfully_downloaded?" | ||
- "Resume::CLI::FontDownloader#self.extract_fonts" | ||
- "Resume::PDF::EmploymentHistory#self.generate" | ||
- "Resume::PDF::Manifest#self.process" | ||
- "Resume::PDF::Manifest#process" | ||
- "Resume::PDF::SocialMediaLogoSet#self.generate_logo_for" | ||
- "Resume::PDF::TechnicalSkills#self.generate" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters