# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os import platform import re import signal import subprocess import sys
from mozlint import result from mozlint.pathutils import expand_exclusions
here = os.path.abspath(os.path.dirname(__file__))
def default_bindir(): # We use sys.prefix to find executables as that gets modified with # virtualenv's activate_this.py, whereas sys.executable doesn't. if platform.system() == "Windows": return os.path.join(sys.prefix, "Scripts") else: return os.path.join(sys.prefix, "bin")
def get_black_version(binary): """
Returns found binary's version """ try:
output = subprocess.check_output(
[binary, "--version"],
stderr=subprocess.STDOUT,
universal_newlines=True,
) except subprocess.CalledProcessError as e:
output = e.output try: # Accept `black.EXE, version ...` on Windows. # for old version of black, the output is # black, version 21.4b2 # From black 21.11b1, the output is like # black, 21.11b1 (compiled: no) return re.match(r"black.*,( version)? (\S+)", output)[2] except TypeError as e:
print("Could not parse the version '{}'".format(output))
print("Error: {}".format(e))
def parse_issues(config, output, paths, *, log):
would_reformat = re.compile("^would reformat (.*)$", re.I)
reformatted = re.compile("^reformatted (.*)$", re.I)
cannot_reformat = re.compile("^error: cannot format (.*?): (.*)$", re.I)
results = [] for l in output.split(b"\n"):
line = l.decode("utf-8").rstrip("\r\n") if line.startswith("All done!") or line.startswith("Oh no!"): break
match = would_reformat.match(line) if match:
res = {"path": match.group(1), "level": "error"}
results.append(result.from_config(config, **res)) continue
match = reformatted.match(line) if match:
res = {"path": match.group(1), "level": "warning", "message": "reformatted"}
results.append(result.from_config(config, **res)) continue
match = cannot_reformat.match(line) if match:
res = {"path": match.group(1), "level": "error", "message": match.group(2)}
results.append(result.from_config(config, **res)) continue
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.