summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--astroid/node_classes.py3
-rw-r--r--pylintrc4
2 files changed, 5 insertions, 2 deletions
diff --git a/astroid/node_classes.py b/astroid/node_classes.py
index 8247b0e2..d33c2b4e 100644
--- a/astroid/node_classes.py
+++ b/astroid/node_classes.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-# pylint: disable=too-many-lines; https://github.com/PyCQA/astroid/issues/465
# Copyright (c) 2009-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
# Copyright (c) 2010 Daniel Harding <dharding@gmail.com>
# Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com>
@@ -23,6 +22,8 @@
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
+# pylint: disable=too-many-lines; https://github.com/PyCQA/astroid/issues/465
+
"""Module for some node classes. More nodes in scoped_nodes.py
"""
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]