Remove pylint
This commit is contained in:
parent
d19360c179
commit
8be6f4c77e
|
@ -4,7 +4,7 @@ from __future__ import unicode_literals
|
|||
import argparse
|
||||
import os
|
||||
|
||||
from six.moves import configparser # pylint: disable=import-error
|
||||
from six.moves import configparser
|
||||
|
||||
|
||||
def get_your_keys(credentials_file):
|
||||
|
|
22
pylintrc
22
pylintrc
|
@ -1,22 +0,0 @@
|
|||
[MESSAGES CONTROL]
|
||||
disable=bad-open-mode,invalid-name,missing-docstring,redefined-outer-name,star-args,locally-disabled,locally-enabled
|
||||
|
||||
[REPORTS]
|
||||
output-format=colorized
|
||||
reports=no
|
||||
|
||||
[BASIC]
|
||||
const-rgx=(([A-Za-z_][A-Za-z0-9_]*)|(__.*__))$
|
||||
|
||||
[FORMAT]
|
||||
max-line-length=131
|
||||
|
||||
[TYPECHECK]
|
||||
ignored-classes=pytest
|
||||
|
||||
[DESIGN]
|
||||
min-public-methods=0
|
||||
|
||||
[SIMILARITIES]
|
||||
min-similarity-lines=5
|
||||
ignore-imports=yes
|
|
@ -1,9 +1,7 @@
|
|||
-e .
|
||||
|
||||
astroid<1.3.3
|
||||
coverage
|
||||
flake8
|
||||
mock
|
||||
pre-commit
|
||||
pylint<1.4
|
||||
pytest
|
||||
|
|
|
@ -12,9 +12,6 @@ from testing.util import get_resource_path
|
|||
from testing.util import write_file
|
||||
|
||||
|
||||
# pylint:disable=unused-argument
|
||||
|
||||
|
||||
@pytest.yield_fixture
|
||||
def f1_is_a_conflict_file(tmpdir):
|
||||
# Make a merge conflict
|
||||
|
|
Loading…
Reference in New Issue