Skip to content

Commit

Permalink
Update references
Browse files Browse the repository at this point in the history
  • Loading branch information
p4p3r committed Dec 13, 2024
1 parent ae66de7 commit 5f6daed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/django/maintainability/duplicate-path-assignment.yaml
Original file line number Diff line number Diff line change
@@ -21,6 +21,8 @@ rules:
category: maintainability
technology:
- django
references:
- https://docs.djangoproject.com/en/3.2/topics/http/urls/#naming-url-patterns
patterns:
- pattern: |
[..., django.urls.path('$URL', $VIEW, ...), ..., django.urls.path('$URL', $DIFFERENT_VIEW, ...), ...]
@@ -35,6 +37,8 @@ rules:
category: maintainability
technology:
- django
references:
- https://docs.djangoproject.com/en/3.2/topics/http/urls/#naming-url-patterns
patterns:
- pattern: |
[..., django.urls.path('$URL', $VIEW, name='$NAME', ...), ..., django.urls.path('$URL', $VIEW, name='$OTHER_NAME', ...), ...]

0 comments on commit 5f6daed

Please sign in to comment.