Uses of 'TODO' tags
objectscriptQuality release
Id
OS0098
Rule type
Code Smell
Severity
Info
Info
SQALE characteristic
- Reliability
- Reliability compliance
Remediation function
Constant/issue
Remediation cost
1h
TODO tags are commonly used to mark places where some more code is required, but which the developer wants to implement later.
Sometimes the developer will not have the time or will simply forget to get back to that tag.
This rule is meant to track those tags and to ensure that they do not go unnoticed.
Non-compliant code
class c1 { method m() { #dim x = 2 //TODO value x w x,! } }