summaryrefslogtreecommitdiff
path: root/venv/Lib/site-packages/pylint/__init__.py
blob: 89809389bd9b77237a8b06115a2454678587ed70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) 2008, 2012 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
# Copyright (c) 2014, 2016-2017 Claudiu Popa <pcmanticore@gmail.com>
# Copyright (c) 2014 Arun Persaud <arun@nubati.net>
# Copyright (c) 2015 Ionel Cristian Maries <contact@ionelmc.ro>
# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

import sys

from pylint.__pkginfo__ import version as __version__
from pylint.checkers.similar import Run as SimilarRun
from pylint.epylint import Run as EpylintRun
from pylint.lint import Run as PylintRun
from pylint.pyreverse.main import Run as PyreverseRun


def run_pylint():
    """run pylint"""

    try:
        PylintRun(sys.argv[1:])
    except KeyboardInterrupt:
        sys.exit(1)


def run_epylint():
    """run pylint"""

    EpylintRun()


def run_pyreverse():
    """run pyreverse"""

    PyreverseRun(sys.argv[1:])


def run_symilar():
    """run symilar"""

    SimilarRun(sys.argv[1:])