summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-01 20:19:36 +0200
committerGitHub <noreply@github.com>2022-04-01 20:19:36 +0200
commite01fa86c00b2cd879c44570b383115a9407547f1 (patch)
treeb2e94f071ec0e50c7066cbbe8e20b9ceed0f2631 /examples
parentf46904ab9b058d8506b87cedd1f0c710d5c19360 (diff)
downloadpylint-git-e01fa86c00b2cd879c44570b383115a9407547f1.tar.gz
Remove the concept of checker priority (#6034)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/custom.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/custom.py b/examples/custom.py
index d7757dc78..a647f8518 100644
--- a/examples/custom.py
+++ b/examples/custom.py
@@ -20,8 +20,6 @@ class MyAstroidChecker(BaseChecker):
# The name defines a custom section of the config for this checker.
name = "custom"
- # The priority indicates the order that pylint will run the checkers.
- priority = -1
# This class variable declares the messages (ie the warnings and errors)
# that the checker can emit.
msgs = {