summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-10-02 09:52:44 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-10-02 09:56:21 +0200
commit3d58a62cefa30fdd20ab303227f6dd6f2bd60830 (patch)
tree526d6815ce04383e41131662135a1ac918f72e74 /pylintrc
parent0d9e17a19dd4c8cce1ec3dab8cfdbcf0871eaf78 (diff)
downloadastroid-git-3d58a62cefa30fdd20ab303227f6dd6f2bd60830.tar.gz
Let formatting be handled by black
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index e61f775a..aab6da80 100644
--- a/pylintrc
+++ b/pylintrc
@@ -133,7 +133,9 @@ disable=fixme,invalid-name, missing-docstring, too-few-public-methods,
wrong-import-order,
wrong-import-position,
# We'll have to disable this until we drop support for Python 2
- stop-iteration-return
+ stop-iteration-return,
+ # black handles these
+ format
[BASIC]