Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.13
rev: v0.16.4
hooks:
- id: ruff
name: ruff-lint
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test = [
"httpx==0.28.1",
]
lint = [
"ruff==0.15.20",
"ruff==0.16.4",
"pre-commit==4.6.2",
]

Expand Down Expand Up @@ -50,6 +50,7 @@ ignore = [
"ISC001", # Conflicts with formatter
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"CPY001", # Missing copyright notice at top of file

@opbot-xd opbot-xd Aug 28, 2026

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @regulartim, I hope its fine to add exception for this rule, or should we add notice at top of all files like we have in some files of Greedybear?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked if we add this line at the very first line of each file (before module docstrings or imports):

# Copyright (c) 2021 The Honeynet Project

We were able to address this rule. Total 13 files required it.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @opbot-xd ! For me it's fine to add an exception for this rule.

]

[tool.ruff.lint.pydocstyle]
Expand Down
44 changes: 22 additions & 22 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading