oppia-android
oppia-android copied to clipboard
Ktlint check comment block
Describe the bug Currently, ktlint is not catching the comment block bad format.
/**
*
*
* */
Expected behavior Ktlint should catch this bad format.
Correct format
/**
*
*/
If this still open, Shall i work on this issue ?
If this still open, Shall i work on this issue ?
Hi @dmdbilal, for the issues that you are interested in, please add a comment with your proposed solution and then we'll assign the issue to you. You can also submit a draft PR containing your preliminary solution. Thanks.
What exactly I need to do in this issue @adhiamboperes ? Whether bad format means the empty lines in the multi-line comments ? or the 2nd asterisk in the last line of the comment ? And If possible can you tell me what's the correct format exactly.
What exactly I need to do in this issue @adhiamboperes ? Whether bad format means the empty lines in the multi-line comments ? or the 2nd asterisk in the last line of the comment ? And If possible can you tell me what's the correct format exactly.
Hi,
Our code style is based on the Kotlin code style. PTAL at https://kotlinlang.org/docs/kotlin-doc.html. In this case, the issue is referring to the second asterisk in the last line.
@aadityaguptaa, PTAL.