mirror of https://github.com/mongodb/mongo
27 lines
682 B
Python
27 lines
682 B
Python
"""PyLint linter support module."""
|
|
|
|
import os
|
|
from typing import List
|
|
|
|
from . import base
|
|
from . import git
|
|
|
|
|
|
class PyLintLinter(base.LinterBase):
|
|
"""Pylint linter."""
|
|
|
|
def __init__(self):
|
|
# type: () -> None
|
|
"""Create a pylint linter."""
|
|
super(PyLintLinter, self).__init__("pylint", "2.3.1")
|
|
|
|
def get_lint_version_cmd_args(self):
|
|
# type: () -> List[str]
|
|
"""Get the command to run a linter version check."""
|
|
return ["--version"]
|
|
|
|
def get_lint_cmd_args(self, file_name):
|
|
# type: (str) -> List[str]
|
|
"""Get the command to run a linter."""
|
|
return ["--output-format=msvs", "--reports=n", file_name]
|