-
Notifications
You must be signed in to change notification settings - Fork 0
Description
@hpcman We did an automated analysis of your code to detect potential areas to improve the code quality. We are sharing the results below, to help you improve the iP code further.
IMPORTANT: Note that the script looked for just a few easy-to-detect problems only, and at-most three example are given i.e., there can be other areas/places to improve.
Aspect: Tab Usage
No easy-to-detect issues 👍
Aspect: Naming boolean variables/methods
Example from src/main/java/pacman/Task.java lines 10-10:
private boolean markDone = false;Suggestion: Follow the given naming convention for boolean variables/methods (e.g., use a boolean-sounding prefix).You may ignore the above if you think the name already follows the convention (the script can report false positives in some cases)
Aspect: Brace Style
No easy-to-detect issues 👍
Aspect: Package Name Style
No easy-to-detect issues 👍
Aspect: Class Name Style
No easy-to-detect issues 👍
Aspect: Dead Code
No easy-to-detect issues 👍
Aspect: Method Length
No easy-to-detect issues 👍
Aspect: Class size
No easy-to-detect issues 👍
Aspect: Header Comments
Example from src/main/java/pacman/Deadline.java lines 18-22:
/**
* Return a <code>String</code> that is readable and writeable by <code>Storage</code>
*
* @return a <code>String</code> that is readable and writeable by <code>Storage</code>
*/Example from src/main/java/pacman/Event.java lines 20-24:
/**
* Return a <code>String</code> that is readable and writeable by <code>Storage</code>
*
* @return a <code>String</code> that is readable and writeable by <code>Storage</code>
*/Example from src/main/java/pacman/Parser.java lines 62-72:
/**
* Execute the command
* If the command add, delete, or mark the tasks, <code>execute</code> use <code>list</code>'s method
* If the command return an output, <code>execute</code> use <code>ui</code>'s method
* If the command ask to exit, return true
*
* @param command command that to be executed
* @param list <code>TaskList</code> object that to be used to update tasks
* @param ui <code>Ui</code> object that to be used to output the result
* @return return true if the command ask to exit and false otherwise
*/Suggestion: Ensure method/class header comments follow the format specified in the coding standard, in particular, the phrasing of the overview statement.
Aspect: Recent Git Commit Message
No easy-to-detect issues 👍
Aspect: Binary files in repo
No easy-to-detect issues 👍
ℹ️ The bot account used to post this issue is un-manned. Do not reply to this post (as those replies will not be read). Instead, contact cs2103@comp.nus.edu.sg if you want to follow up on this post.