scripts: Remove pylint

pylint has been a great tool to get the initial code base into shape
but since then we mostely false postives. All those warnings needed to
be annonated.

This allong wouldn't be reason enough to remove it. The main problem
is that the pylint version on gitlab is updated in the back and
suddenly we get new warnings which are bogus.

Signed-off-by: Daniel Wagner <daniel.wagner@siemens.com>
This commit is contained in:
Daniel Wagner
2018-12-07 09:34:27 +01:00
parent 98b4d888bc
commit 25bc0c9c06
14 changed files with 1 additions and 439 deletions

View File

@@ -41,7 +41,6 @@ class Repo:
def __init__(self, url, path, refspec, layers, patches,
disable_operations):
# pylint: disable=too-many-arguments
self.url = url
self.path = path
self.refspec = refspec
@@ -51,7 +50,6 @@ class Repo:
self.operations_disabled = disable_operations
def __getattr__(self, item):
# pylint: disable=no-else-return
if item == 'layers':
if not self._layers:
return [self.path]
@@ -256,7 +254,6 @@ class RepoImpl(Repo):
(retc, output) = yield from run_cmd_async(cmd,
cwd=self.path,
fail=False)
# pylint: disable=no-else-return
if retc:
logging.error('Could not apply patch. Please fix repos and '
'patches. (patch path: %s, repo: %s, patch '
@@ -274,7 +271,6 @@ class GitRepo(RepoImpl):
"""
Provides the git functionality for a Repo.
"""
# pylint: disable=no-self-use,missing-docstring
def clone_cmd(self, gitsrcdir):
cmd = ['git', 'clone', '-q', self.url, self.path]
@@ -310,7 +306,6 @@ class MercurialRepo(RepoImpl):
"""
Provides the hg functionality for a Repo.
"""
# pylint: disable=no-self-use,missing-docstring,unused-argument
def clone_cmd(self, gitsrcdir, config):
return ['hg', 'clone', self.url, self.path]