Skip to content

Commit f4b4f89

Browse files
authored
Update conf.py (#182)
1. Added three new tags: - 'maintainability' - 'portability' - 'surprising-behavior' 2. Fixed a typo in the `undefined-behavior` tag 3. Improved some tag descriptions
1 parent d695610 commit f4b4f89

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/conf.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,15 @@
9797
dict(name="security", description="Security-related guideline"),
9898
dict(name="performance", description="Performance-related guideline"),
9999
dict(name="readability", description="Readability-related guideline"),
100-
dict(name="reduce-human-error", description="Reducing human error guideline"),
100+
dict(name="reduce-human-error", description="Guideline that helps prevent human error"),
101101
dict(name="numerics", description="Numerics-related guideline"),
102-
dict(name="undefined-behavior", description="Numerics-related guideline"),
103-
dict(name="stack-overflow", description="Stack-overflow-related guideline"),
102+
dict(name="undefined-behavior", description="Guideline related to Undefined Behavior"),
103+
dict(name="stack-overflow", description="Guideline related to Stack Overflow"),
104104

105+
dict(name="maintainability", description="Maintainability-related guideline"),
106+
dict(name="portability", description="Portability-related guideline"),
107+
dict(name="surprising-behavior", description="Guideline related to surprising or unexpected behavior"),
108+
105109
dict(name="subset", description="Guideline associated with the language-subset profile"),
106110
dict(name="defect", description="Guideline associated with the defect-prevention profile"),
107111
]

0 commit comments

Comments
 (0)