import sys from pylint import run_pylint ############################################################################### # rp_pylint.py # @title: Mesure de la qualité d'un code Python # @project: Ropy (Blender-EduTech) # @lang: fr # @authors: Philippe Roy # @copyright: Copyright (C) 2024 Philippe Roy # @license: GNU GPL ############################################################################### # print (sys.argv[0]) # print (sys.argv[1]) # run_pylint(argv=["--version"]) # Détection des erreurs run_pylint(argv=["--errors-only", sys.argv[1]]) # run_pylint(argv=["--disable=line-too-long", sys.argv[1]]) sys.exit(0)