-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from muhrifqii/feature/atom
Enable Atom Feed
- Loading branch information
Showing
27 changed files
with
597 additions
and
98 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
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
Empty file.
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 |
---|---|---|
@@ -0,0 +1,95 @@ | ||
build: | ||
maxIssues: 0 | ||
excludeCorrectable: false | ||
weights: | ||
config: | ||
validation: true | ||
warningsAsErrors: false | ||
# when writing own rules with new properties, exclude the property path e.g.: 'my_rule_set,.*>.*>[my_property]' | ||
excludes: '' | ||
comments: | ||
active: true | ||
UndocumentedPublicClass: | ||
active: false | ||
excludes: &excludedDirs | ||
- '**/test/**' | ||
- '**/androidTest/**' | ||
- '**/sample/**' | ||
searchInNestedClass: true | ||
searchInInnerClass: true | ||
searchInInnerObject: true | ||
searchInInnerInterface: true | ||
UndocumentedPublicFunction: | ||
active: true | ||
excludes: *excludedDirs | ||
UndocumentedPublicProperty: | ||
active: false | ||
complexity: | ||
TooManyFunctions: | ||
active: true | ||
excludes: *excludedDirs | ||
thresholdInFiles: 25 | ||
thresholdInClasses: 25 | ||
thresholdInInterfaces: 25 | ||
thresholdInObjects: 50 | ||
thresholdInEnums: 25 | ||
ignoreDeprecated: true | ||
ignorePrivate: false | ||
ignoreOverridden: true | ||
NestedBlockDepth: | ||
active: true | ||
threshold: 4 | ||
empty-blocks: | ||
active: true | ||
EmptyCatchBlock: | ||
active: true | ||
allowedExceptionNameRegex: '_|(ignore|expected).*' | ||
EmptyClassBlock: | ||
active: true | ||
EmptyDefaultConstructor: | ||
active: true | ||
EmptyDoWhileBlock: | ||
active: true | ||
EmptyElseBlock: | ||
active: true | ||
EmptyFinallyBlock: | ||
active: true | ||
EmptyForBlock: | ||
active: true | ||
EmptyFunctionBlock: | ||
active: true | ||
ignoreOverridden: true | ||
EmptyIfBlock: | ||
active: true | ||
EmptyInitBlock: | ||
active: true | ||
EmptyKtFile: | ||
active: true | ||
EmptySecondaryConstructor: | ||
active: true | ||
EmptyTryBlock: | ||
active: true | ||
EmptyWhenBlock: | ||
active: true | ||
EmptyWhileBlock: | ||
active: true | ||
exceptions: | ||
active: true | ||
SwallowedException: | ||
active: false | ||
style: | ||
active: true | ||
MaxLineLength: | ||
active: true | ||
excludes: *excludedDirs | ||
maxLineLength: 120 | ||
excludePackageStatements: true | ||
excludeImportStatements: true | ||
excludeCommentStatements: true | ||
ReturnCount: | ||
active: true | ||
max: 3 | ||
PreferToOverPairSyntax: | ||
active: true | ||
formatting: | ||
excludes: *excludedDirs |
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
7 changes: 6 additions & 1 deletion
7
fuel/src/main/java/com/github/muhrifqii/parserss/fuel/FuelRSSConverter.kt
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
Oops, something went wrong.