We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4c060 commit e8f3690Copy full SHA for e8f3690
src/etc/tidy.py
@@ -49,9 +49,9 @@ def do_license_check(name, contents):
49
report_err("FIXME without issue number")
50
if line.find("TODO") != -1:
51
report_err("TODO is deprecated; use FIXME")
52
- idx = line.find("// WARN")
+ idx = line.find("// NOTE")
53
if idx != -1:
54
- report_warn("WARN:" + line[idx + len("// WARN"):])
+ report_warn("NOTE:" + line[idx + len("// NOTE"):])
55
if (line.find('\t') != -1 and
56
fileinput.filename().find("Makefile") == -1):
57
report_err("tab character")
0 commit comments