Description
The codebase contains numerous # NOTE: comments (e.g., in nixpkgs/opencode/default.nix and home/nixvim/default.nix) that serve as informal warnings or pending tasks. This approach lacks visibility and makes it easy for important information or tasks to be overlooked.
Implementation Requirements
- Audit Codebase: Search for all occurrences of
# NOTE: using grep or similar tools.
- Categorize Findings:
- Informational Notes: If the note provides important context or warnings, move it to a formal
README.md or add a more descriptive, standardized comment (e.g., # WARNING:).
- Pending Tasks: If the note describes a task to be performed, convert it to a
# TODO: comment.
- Standardize: Ensure all new comments follow a consistent format.
Definition of Done (DoD)
Description
The codebase contains numerous
# NOTE:comments (e.g., innixpkgs/opencode/default.nixandhome/nixvim/default.nix) that serve as informal warnings or pending tasks. This approach lacks visibility and makes it easy for important information or tasks to be overlooked.Implementation Requirements
# NOTE:using grep or similar tools.README.mdor add a more descriptive, standardized comment (e.g.,# WARNING:).# TODO:comment.Definition of Done (DoD)
# NOTE:comments have been processed.# TODO:.