Procházet zdrojové kódy

Create a error message generator

pull/3011/head
Matheus Felipe před 2 roky
rodič
revize
2501df6b93
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: AA785C523274872F
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      scripts/validate/format.py

+ 5
- 0
scripts/validate/format.py Zobrazit soubor

@@ -23,3 +23,8 @@ title_links = []
anchor_re = re.compile(anchor + '\s(.+)')
section_title_re = re.compile('\*\s\[(.*)\]')
link_re = re.compile('\[(.+)\]\((http.*)\)')


def error_message(line_number: int, message: str) -> str:
line = line_number + 1
return f'(L{line:03d}) {message}'

Načítá se…
Zrušit
Uložit