防止自我转让的保护

Bea*_*own 20 python pylint

我有这个测试文件:

"""module docstring"""


class Aclass:
    """class docstring"""

    def __init__(self, attr=None, attr2=None):
        self.attr = attr
        self.attr2 = attr2

    def __repr__(self):
        return 'instance_of the Aclass {self.attr}.'

    def __str__(self):
        return 'The A with: {self.attr}.'


def init_a():
    """function docstring"""
    a_inst = Aclass()
    attr = 1
    attr2 = 2
    a_inst.attr2 = attr2
    # should be: a_inst.attr = attr, but have a typo
    attr = attr
Run Code Online (Sandbox Code Playgroud)

我使用pylint对其进行了检查,输出显示一切正常。

$ pylint test.py 

--------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)
Run Code Online (Sandbox Code Playgroud)

Based on the linting, i expect the flag about suspicious usage in software language, because i don't know when this code a=1; a=a can be useful. And I want to see some warning, for example: unused variable or self-assignment etc. Is there way using the pylint? (I know about Pycharm and sonarqube). Example of the sonar rules.

public void foo() {
    int x = 3;
    x = x;
}

Such assignments are useless, and may indicate a logic error or typo.
Run Code Online (Sandbox Code Playgroud)

details about the pylint

pylint 2.3.1
astroid 2.2.5
Python 3.6.5 (default, May  5 2019, 22:05:54) 
[GCC 6.3.0 20170516]
Run Code Online (Sandbox Code Playgroud)

UPDATE Has added to the version pylint 2.4

Cho*_*ean 10

我看过Pylint规则,但没有发现任何可帮助您解决此问题的方法。我确实发现的是,您可以编写自己的检查器并使用它来创建pylint:

$ pylint yourpieceofcode.py --load-plugins=checker

checker.py:

from pylint.checkers import BaseChecker
from pylint.interfaces import IAstroidChecker


class SelfAssignChecker(BaseChecker):
    __implements__ = IAstroidChecker

    name = 'self-assign-returns'
    priority = -1
    msgs = {
        'W5555': (
            'Self assignment (%s).',
            'self-assign',
            'useless assignment.'
        ),
    }

    def visit_assign(self, node):
        names = []
        for child in node.get_children():
            if not hasattr(child, 'name'):
                return
            if child.name not in names:
                names.append(child.name)
            else:
                self.add_message("self-assign", node=node, args=child.name)


def register(linter):
    linter.register_checker(SelfAssignChecker(linter))
Run Code Online (Sandbox Code Playgroud)

Doc 在这里!:)

已对您的文件进行测试test.py。输出:

$ pylint --load-plugins=checker test.py
************* Module test
test.py:25:0: C0304: Final newline missing (missing-final-newline)
test.py:25:4: W5555: Self assignment (attr). (self-assign)

------------------------------------------------------------------
Your code has been rated at 8.57/10 (previous run: 9.29/10, -0.71)
Run Code Online (Sandbox Code Playgroud)

Pylint版本:

$ pylint --version
pylint 2.3.1
astroid 2.2.5
Python 3.6.7 (default, Oct 22 2018, 11:32:17) 
[GCC 8.2.0]
Run Code Online (Sandbox Code Playgroud)