def small_alpha_vrachy_check()

in lean/scripts/lint_style.py [0:0]


def small_alpha_vrachy_check(lines, path):
    errors = []
    for line_nr, line in skip_string(skip_comments(enumerate(lines, 1))):
        if 'αΎ°' in line:
            errors += [(ERR_SAV, line_nr, path)]
    return errors