summaryrefslogtreecommitdiff
path: root/examples/pylintrc
diff options
context:
space:
mode:
authorBenny <benny.mueller91@gmail.com>2020-02-13 09:30:43 +0100
committerGitHub <noreply@github.com>2020-02-13 09:30:43 +0100
commit8956979db811cabc0d96a5f256e3001574e59a00 (patch)
treeae66a7f903420497e2482765a25d49009d55d653 /examples/pylintrc
parent5f49ac2835afc1d5d1d19db763b122d51f145cdf (diff)
downloadpylint-git-8956979db811cabc0d96a5f256e3001574e59a00.tar.gz
Add notes-rgx option for fixme checker (#3394)
This commit adds a new `notes-rgx` which is used by the "fixme" check for more granular control over the what fixme messages to emit. Co-authored-by: Claudiu Popa <pcmanticore@gmail.com>
Diffstat (limited to 'examples/pylintrc')
-rw-r--r--examples/pylintrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index da17c23bf..7196a8203 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -468,6 +468,8 @@ notes=FIXME,
XXX,
TODO
+# Regular expressio of note tags to take in consideration.
+notes-rgx=a^
[STRING]