summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-01 19:56:15 +0200
committerGitHub <noreply@github.com>2022-05-01 19:56:15 +0200
commit76b853836801188667cf47f45b45493ef27d178c (patch)
treeb7e842c4b2b1aefde1740f5d77f3b4b77578f742 /pylintrc
parente1769bd44631374eab4f9176f51cc64a7051f316 (diff)
downloadpylint-git-76b853836801188667cf47f45b45493ef27d178c.tar.gz
Disable fixme for internal uses before we make it optional in #3512 (#6482)
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index 86605528d..20cdf20f1 100644
--- a/pylintrc
+++ b/pylintrc
@@ -104,6 +104,8 @@ disable=
too-few-public-methods,
# handled by black
format,
+ # We anticipate #3512 where it will become optional
+ fixme,
[REPORTS]