Skip to content

Commit

Permalink
docs: update project links
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Aug 13, 2023
1 parent 7d6459c commit f487481
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
9 changes: 6 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# https://editorconfig.org
# editorconfig
# Ref: https://editorconfig.org
# ------------------------------------------------------------------------------
root = true

[*]
Expand All @@ -9,9 +11,10 @@ indent_style = space
indent_size = 2
trim_trailing_whitespace = true

[*.{py, pyi}]
[*.{py,pyi}]
indent_style = space
indent_size = 4

[*.yml,yaml,json, toml]
[*.{yml,yaml,json,toml}]
indent_style = space
indent_size = 2
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# dependabot
# Ref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# ------------------------------------------------------------------------------
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
target-branch: main
commit-message:
prefix: chore(deps-dev)
open-pull-requests-limit: 10
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# mkdocs
# https://www.mkdocs.org/user-guide/configuration/
# Ref: https://www.mkdocs.org/user-guide/configuration/
# ------------------------------------------------------------------------------

site_name: services-test4
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ requires = [
packages = ["src/services_test4"]

# hatch
# https://hatch.pypa.io/latest/config/metadata/
# Ref: https://hatch.pypa.io/latest/config/metadata/
# ------------------------------------------------------------------------------

[tool.hatch.envs.default]
Expand Down Expand Up @@ -108,7 +108,7 @@ serve = "mkdocs serve --verbose"
deploy = "mkdocs gh-deploy --force --verbose"

# black
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
# Ref: https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
# ------------------------------------------------------------------------------

[tool.black]
Expand All @@ -117,7 +117,7 @@ line-length = 120
skip-string-normalization = true

# ruff
# https://beta.ruff.rs/docs/configuration/
# Ref: https://beta.ruff.rs/docs/configuration/
# ------------------------------------------------------------------------------

[tool.ruff]
Expand Down Expand Up @@ -150,14 +150,14 @@ ban-relative-imports = "all"
"tests/**/*" = ["PLR2004", "S101", "TID252"]

# pytest
# https://docs.pytest.org/en/stable/customize.html
# Ref: https://docs.pytest.org/en/stable/customize.html
# ------------------------------------------------------------------------------

[tool.pytest.ini_options]
testpaths = "tests"

# coverage.py
# https://coverage.readthedocs.io/en/latest/config.html
# Ref: https://coverage.readthedocs.io/en/latest/config.html
# ------------------------------------------------------------------------------

[tool.coverage.run]
Expand All @@ -180,7 +180,7 @@ exclude_lines = [
skip_empty = true

# mypy
# https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
# Ref: https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
# ------------------------------------------------------------------------------

[tool.mypy]
Expand All @@ -192,15 +192,15 @@ show_error_codes = true
show_error_context = true

# licensecheck
# https://github.com/FHPythonUtils/LicenseCheck/#example-1-pyprojecttoml
# Ref: https://github.com/FHPythonUtils/LicenseCheck/#example-1-pyprojecttoml
# ------------------------------------------------------------------------------

[tool.licensecheck]
using = "PEP631"
format = "ansi"

# python-semantic-release
# https://python-semantic-release.readthedocs.io/en/latest/configuration.html#settings
# Ref: https://python-semantic-release.readthedocs.io/en/latest/configuration.html#settings
# ------------------------------------------------------------------------------

[tool.semantic_release]
Expand Down

0 comments on commit f487481

Please sign in to comment.