Docs: automatically generate the list of locales (#3272)

This commit is contained in:
Oleh Prypin
2023-06-23 09:35:26 +02:00
committed by GitHub
parent f784374856
commit b162c5e824
6 changed files with 45 additions and 37 deletions

View File

@@ -168,13 +168,13 @@ lint = [
"flake8 mkdocs",
]
check = [
"isort --check-only --diff mkdocs",
"black -q --check --diff mkdocs",
"isort --check-only --diff mkdocs docs",
"black -q --check --diff mkdocs docs",
"lint",
]
format = [
"isort -q mkdocs",
"black -q mkdocs",
"isort -q mkdocs docs",
"black -q mkdocs docs",
]
[tool.hatch.envs.lint]