summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorYannack <yannack@users.noreply.github.com>2016-06-20 09:21:34 -0400
committerClaudiu Popa <pcmanticore@gmail.com>2016-06-20 14:21:34 +0100
commit77bec5413c1d4646294b3d9ce85342e226193b62 (patch)
tree49c16c389157d7087a028d99989161e81ab84121 /pylintrc
parent554c8c7ec3083c7ed3a8d2fc8908872e5e14b75e (diff)
downloadpylint-git-77bec5413c1d4646294b3d9ce85342e226193b62.tar.gz
Made list of property-like decorators configurable. (#942)
Made list of property-like decorators configurable. This makes it possible to configure pylint to accept custom decorators similar to @property without the need to explicitly add a pylint directive #pylint disable=invalid-name
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index 79c6d3905..f5ccaff91 100644
--- a/pylintrc
+++ b/pylintrc
@@ -252,6 +252,9 @@ no-docstring-rgx=__.*__
# ones are exempt.
docstring-min-length=-1
+# List of decorators that define properties, such as abc.abstractproperty.
+property-classes=abc.abstractproperty
+
[TYPECHECK]