소스 검색

Add max_description_length constant

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

+ 2
- 1
scripts/validate/format.py 파일 보기

@@ -18,6 +18,7 @@ index_cors = 4

num_segments = 5
min_entries_per_category = 3
max_description_length = 100

anchor_re = re.compile(anchor + '\s(.+)')
category_title_in_index_re = re.compile('\*\s\[(.*)\]')
@@ -114,7 +115,7 @@ def check_description(line_num: int, description: str) -> List[str]:
err_msgs.append(err_msg)

desc_length = len(description)
if desc_length > 100:
if desc_length > max_description_length:
err_msg = error_message(line_num, f'description should not exceed 100 characters (currently {desc_length})')
err_msgs.append(err_msg)


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