Skip to content
Snippets Groups Projects
Commit f1b2c8ab authored by Campbell Barton's avatar Campbell Barton
Browse files

check_spelling: allow +/- characters in TODO(...) comments

parent 6bc41b20
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ re_ignore = re.compile(
# Email address: me@email.com
r"<\w+@[\w\.]+>|"
# Convention for TODO/FIXME messages: TODO(name)
r"\b(TODO|FIXME|XXX)\([A-Za-z\s]+\)|"
# Convention for TODO/FIXME messages: TODO(my name) OR FIXME(name+name) OR XXX(some-name)
r"\b(TODO|FIXME|XXX)\([A-Za-z\s\+\-]+\)|"
# Doxygen style: <pre> ... </pre>
r"<pre>.+</pre>|"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment