6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
21 lines
478 B
Python
Executable File
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)
|