Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 744 Bytes

configuring_comment_keywords.rst

File metadata and controls

25 lines (16 loc) · 744 Bytes

Configuring Comment Keywords

Comments serve as a mode of communication between designers. They can be used to clarify code and communicate tasks.

Common task based comments include instructions for missing features or issues which must be addressed. The keywords TODO and FIXME are typically used to communicate these to other designers.

The list of keywords searched for can be configured using the code:keyword option.

rule :
    comment_012:
        disable: false
        keywords: ['TODO', 'FIXME', 'ATTENTION']

Rules Enforcing Comment Keywords