qubes-installer-qubes-os/anaconda/translation-canary/tests/pylint/runpylint.py
Marek Marczykowski-Górecki 6bc5671491
anaconda: update to 25.20.9-1
Apply:
  git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1

And resolve conflicts.

QubesOS/qubes-issues#2574
2017-02-14 02:36:20 +01:00

21 lines
478 B
Python
Executable File

#!/usr/bin/python3
import sys
from pocketlint import PocketLintConfig, PocketLinter
class TranslationCanaryLintConfig(PocketLintConfig):
@property
def disabledOptions(self):
return [ "I0011", # Locally disabling %s
]
@property
def extraArgs(self):
return ["--init-import", "y"]
if __name__ == "__main__":
conf = TranslationCanaryLintConfig()
linter = PocketLinter(conf)
rc = linter.run()
sys.exit(rc)