Skip to content

Commit

Permalink
docs: 📝 Update contributing guide's DCO section
Browse files Browse the repository at this point in the history
Signed-off-by: koviubi56 <koviubi56@duck.com>
  • Loading branch information
koviubi56 committed Feb 6, 2024
1 parent 03de0c5 commit 5472edf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,5 @@ A copy of the DCO can be found at <https://developercertificate.org/> or here:
> personal information I submit with it, including my sign-off) is
> maintained indefinitely and may be redistributed consistent with
> this project or the open source license(s) involved.
Any contribution submitted for inclusion in the project by you, shall be licensed under the project's license, without any additional terms or conditions.
29 changes: 15 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,11 @@ dependencies = { file = "requirements.txt" }
[tool.setuptools.package-data]
mylog = ["py.typed"]


[tool.ruff]
line-length = 79
target-version = "py310"

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN101",
Expand All @@ -62,6 +65,16 @@ ignore = [
"TD003",
"TRY003",
]
per-file-ignores = { "tests/*" = [
"D",
"PLR2004",
"S101",
"SLF001",
], "noxfile.py" = [
"D",
], "setup.py" = [
"D",
] }
fixable = [
"F632",
"E711",
Expand Down Expand Up @@ -94,20 +107,8 @@ fixable = [
"SIM211",
"SIM212",
]
per-file-ignores = { "tests/*" = [
"D",
"PLR2004",
"S101",
"SLF001",
], "noxfile.py" = [
"D",
], "setup.py" = [
"D",
] }
line-length = 79
target-version = "py310"

[tool.ruff.pydocstyle]
[tool.ruff.lint.pydocstyle]
convention = "google"
ignore-decorators = ["typing.overload"]

Expand Down

0 comments on commit 5472edf

Please sign in to comment.