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

@@ -47,7 +47,6 @@ from . import __version__, __file_version__, __compatible_file_version__
# Import kas plugins
# Since they are added by decorators, they don't need to be called,
# just imported.
# pylint: disable=unused-import
from .libkas import kasplugin
from . import build
from . import shell
@@ -155,7 +154,6 @@ def main():
"""
The main function that operates as a wrapper around kas.
"""
# pylint: disable=broad-except
try:
sys.exit(kas(sys.argv[1:]))