Skip to content

Commit f028318

Browse files
docs: update deptry rule documentation links
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent b829ad5 commit f028318

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,15 +205,15 @@ mount_docker_socket = true
205205
# This is a mapping of rules and package names to be ignored for that rule.
206206

207207
# DEP001: Unused direct dependencies - packages that are declared as dependencies but not imported
208-
# https://deptry.com/rules/dep001/
208+
# https://deptry.com/rules-violations/#unused-dependencies-dep001
209209
DEP001 = [
210210
# Optional dependencies that might be imported conditionally
211211
"dagger", # Used in bin scripts but not a core dependency
212212
"source_declarative_manifest" # Used in tests but not a core dependency
213213
]
214214

215215
# DEP002: Missing dependencies - packages that are imported but not declared as dependencies
216-
# https://deptry.com/rules/dep002/
216+
# https://deptry.com/rules-violations/#missing-dependencies-dep002
217217
DEP002 = [
218218
# Dependencies that are imported indirectly through other packages
219219
"sqlalchemy", # Used through extras
@@ -234,14 +234,14 @@ DEP002 = [
234234
]
235235

236236
# DEP003: Transitive dependencies - packages that are imported directly
237-
# https://deptry.com/rules/dep003/
237+
# https://deptry.com/rules-violations/#transitive-dependencies-dep003
238238
DEP003 = [
239239
# Transitive dependencies that are imported directly
240240
"pydantic_core" # Pydantic internals
241241
]
242242

243243
# DEP004: Dev dependencies imported in main code - packages that are imported in non-test code but declared as dev dependencies
244-
# https://deptry.com/rules/dep004/
244+
# https://deptry.com/rules-violations/#misplaced-development-dependencies-dep004
245245
DEP004 = [
246246
"pdoc", # Only used for generating documentation. Not a runtime dependency.
247247
"pytest", # Test dependencies

0 commit comments

Comments
 (0)