-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(service): test llm_client passed
style(project): format all project fix(project): sg_search passed docs(project): add new config template feat(main.py): add exception catch lint(project): pylint service and frontend passed tests(project): add license improvement(service): add docstring for files CI(setup.py): upload to pypi
- Loading branch information
1 parent
e4438fc
commit 2655530
Showing
61 changed files
with
4,338 additions
and
1,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# Copyright (c) MegFlow. All rights reserved. | ||
# /bin/python3 | ||
|
||
import argparse | ||
import os | ||
import re | ||
|
||
|
||
def make_parser(): | ||
parser = argparse.ArgumentParser('Doc link checker') | ||
parser.add_argument('--http', | ||
default=False, | ||
type=bool, | ||
help='check http or not ') | ||
parser.add_argument('--target', | ||
default='./docs', | ||
type=str, | ||
help='the directory or file to check') | ||
return parser | ||
|
||
|
||
pattern = re.compile(r'\[.*?\]\(.*?\)') | ||
|
||
|
||
def analyze_doc(home, path): | ||
print('analyze {}'.format(path)) | ||
problem_list = [] | ||
code_block = 0 | ||
with open(path, encoding='utf8') as f: | ||
lines = f.readlines() | ||
for line in lines: | ||
line = line.strip() | ||
if line.startswith('```'): | ||
code_block = 1 - code_block | ||
|
||
if code_block > 0: | ||
continue | ||
|
||
if '[' in line and ']' in line and '(' in line and ')' in line: | ||
all = pattern.findall(line) | ||
for item in all: | ||
# skip ![]() | ||
if item.find('[') == item.find(']') - 1: | ||
continue | ||
|
||
# process the case [text()]() | ||
offset = item.find('](') | ||
if offset == -1: | ||
continue | ||
item = item[offset:] | ||
start = item.find('(') | ||
end = item.find(')') | ||
ref = item[start + 1:end] | ||
|
||
if ref.startswith('http') or ref.startswith('#'): | ||
continue | ||
if '.md#' in ref: | ||
ref = ref[ref.find('#'):] | ||
fullpath = os.path.join(home, ref) | ||
if not os.path.exists(fullpath): | ||
problem_list.append(ref) | ||
else: | ||
continue | ||
if len(problem_list) > 0: | ||
print(f'{path}:') | ||
for item in problem_list: | ||
print(f'\t {item}') | ||
print('\n') | ||
raise Exception('found link error') | ||
|
||
|
||
def traverse(target): | ||
if os.path.isfile(target): | ||
analyze_doc(os.path.dirname(target), target) | ||
return | ||
for home, dirs, files in os.walk(target): | ||
for filename in files: | ||
if filename.endswith('.md'): | ||
path = os.path.join(home, filename) | ||
if os.path.islink(path) is False: | ||
analyze_doc(home, path) | ||
|
||
|
||
if __name__ == '__main__': | ||
args = make_parser().parse_args() | ||
traverse(args.target) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
- name: Check doc link | ||
run: | | ||
python .github/scripts/doc_link_checker.py --target README_en.md | ||
python .github/scripts/doc_link_checker.py --target README.md | ||
python -m pip install pylint interrogate | ||
pylint huixiangdou || true | ||
interrogate huixiangdou -v || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Publish Python 🐍 distributions 📦 to PyPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Install pypa/build | ||
run: >- | ||
python -m | ||
pip install | ||
build | ||
--user | ||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--wheel | ||
--outdir dist/ | ||
- name: Publish distribution 📦 to PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
repos: | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 4.0.1 | ||
hooks: | ||
- id: flake8 | ||
exclude: ^(__init__.py)$ | ||
args: ["--max-line-length=79", "--exclude=service/__init__.py", "--exclude=tests/*"] | ||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.11.5 | ||
hooks: | ||
- id: isort | ||
- repo: https://github.com/pre-commit/mirrors-yapf | ||
rev: v0.32.0 | ||
hooks: | ||
- id: yapf | ||
name: yapf | ||
description: 'Formatter for Python code' | ||
entry: yapf | ||
language: python | ||
args: ['-i', '--style={based_on_style: pep8, column_limit: 79}'] | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.2.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: requirements-txt-fixer | ||
- id: double-quote-string-fixer | ||
- id: check-merge-conflict | ||
- id: fix-encoding-pragma | ||
args: ["--remove"] | ||
- id: mixed-line-ending | ||
args: ["--fix=lf"] | ||
- repo: https://github.com/executablebooks/mdformat | ||
rev: 0.7.9 | ||
hooks: | ||
- id: mdformat | ||
args: ["--number"] | ||
additional_dependencies: | ||
- mdformat-openmmlab | ||
- mdformat_frontmatter | ||
- linkify-it-py | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.1.0 | ||
hooks: | ||
- id: codespell | ||
args: ["--skip=third_party/*,*.ipynb,*.proto"] | ||
|
||
- repo: https://github.com/myint/docformatter | ||
rev: v1.4 | ||
hooks: | ||
- id: docformatter | ||
args: ["--in-place", "--wrap-descriptions", "79"] | ||
|
||
- repo: https://github.com/open-mmlab/pre-commit-hooks | ||
rev: v0.4.1 | ||
hooks: | ||
- id: check-copyright | ||
args: ["huixiangdou"] |
Oops, something went wrong.