-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add linting for public documentation #45
Conversation
@@ -1,3 +1,6 @@ | |||
/** | |||
* A utility object for Base58 encoding and decoding. | |||
*/ | |||
public object Base58Btc { | |||
private val ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nitro-neal, there's more context on the crypto branch here
Currently, Base58Btc is used for did:key
@@ -1,3 +1,6 @@ | |||
/** | |||
* A utility object for Base58 encoding and decoding. | |||
*/ | |||
public object Base58Btc { | |||
private val ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea lol. It was already in there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🆗 ✅
Co-authored-by: nitro-neal <[email protected]>
Overview
This PR modifies the detekt configuration to check undocumented public functions and classes. All instances that were offending have been fixed as well with the help of Chad.
Description
See above.
How Has This Been Tested?
No functional changes.