Home
Track uses of TODO tags
Description
-
The Pl_Sql code rule "Track uses of TODO tags" is used to track the use of TODO tags in the code. This rule is used to identify any code that has been marked with a TODO tag, which is a comment that is used to indicate that a certain task needs to be completed. This rule helps to ensure that all tasks that have been marked with a TODO tag are completed in a timely manner. This rule also helps to identify any code that may have been forgotten or overlooked.
Key Benefits
- Organization: Todo tags rule helps to organize tasks and prioritize them according to their importance.
- Time Management: It helps to manage time efficiently by tracking the usage of tasks.
- Productivity: It increases productivity by enabling users to focus on important tasks.
- Collaboration: It facilitates collaboration among team members by allowing them to track and share tasks.
- Visibility: It provides visibility into task progress and completion status.
Non-compliant Code Example
SELECT * --TODO : Add specific columns which is required. --Non compliant code FROM Person.Address ORDER BY PostalCode ASC; --TODO : Remove ASC because by default it takes as ASC. --Non compliant code