소스 검색

Create a error message generator

pull/3011/head
Matheus Felipe 2 년 전
부모
커밋
2501df6b93
No known key found for this signature in database GPG 키 ID: AA785C523274872F
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      scripts/validate/format.py

+ 5
- 0
scripts/validate/format.py 파일 보기

@@ -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}'

불러오는 중...
취소
저장