Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitce86aaa

Browse files
[doc] Avoid a redirection in the links (PyCQA => pylint-dev) (#436)
1 parent23722cd commitce86aaa

14 files changed

+97
-97
lines changed

‎.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
**WARNING:** Please do not report issues about missing Django, see
2-
[README](https://github.com/PyCQA/pylint-django#installation)!
2+
[README](https://github.com/pylint-dev/pylint-django#installation)!
33

44
**TODO:** make sure to post the output of`pip freeze`
55

‎CHANGELOG.rst

Lines changed: 80 additions & 80 deletions
Large diffs are not rendered by default.

‎README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
pylint-django
22
=============
33

4-
..image::https://github.com/PyCQA/pylint-django/actions/workflows/build.yml/badge.svg
5-
:target:https://github.com/PyCQA/pylint-django/actions/workflows/build.yml
4+
..image::https://github.com/pylint-dev/pylint-django/actions/workflows/build.yml/badge.svg
5+
:target:https://github.com/pylint-dev/pylint-django/actions/workflows/build.yml
66

7-
..image::https://coveralls.io/repos/github/PyCQA/pylint-django/badge.svg?branch=master
8-
:target:https://coveralls.io/github/PyCQA/pylint-django?branch=master
7+
..image::https://coveralls.io/repos/github/pylint-dev/pylint-django/badge.svg?branch=master
8+
:target:https://coveralls.io/github/pylint-dev/pylint-django?branch=master
99

1010
..image::https://img.shields.io/pypi/v/pylint-django.svg
1111
:target:https://pypi.python.org/pypi/pylint-django
@@ -29,7 +29,7 @@ To install::
2929

3030
**WARNING:** ``pylint-django`` will not install ``Django`` by default because
3131
this causes more trouble than good,
32-
`see discussion<https://github.com/PyCQA/pylint-django/pull/132>`__. If you wish
32+
`see discussion<https://github.com/pylint-dev/pylint-django/pull/132>`__. If you wish
3333
to automatically install the latest version of ``Django`` then::
3434

3535
pip install pylint-django[with-django]

‎pylint_django/tests/input/external_django_tables2_noerror_meta_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Check that Meta class definitions for django_tables2 classes
22
# don't produce old-style-class warnings, see
3-
# https://github.com/PyCQA/pylint-django/issues/56
3+
# https://github.com/pylint-dev/pylint-django/issues/56
44

55
# pylint: disable=missing-docstring,too-few-public-methods
66

‎pylint_django/tests/input/external_model_utils_noerror_override_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Check that when overriding the 'objects' attribite of a model class
22
# with a manager from the django-model-utils package pylint-django
33
# does not report not-an-iterator error, see
4-
# https://github.com/PyCQA/pylint-django/issues/117
4+
# https://github.com/pylint-dev/pylint-django/issues/117
55
# pylint: disable=missing-docstring, invalid-name
66

77
fromdjango.dbimportmodels

‎pylint_django/tests/input/func_noerror_duplicate_except_doesnotexist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Checks that Pylint does not complain about duplicate
33
except blocks catching DoesNotExist exceptions:
4-
https://github.com/PyCQA/pylint-django/issues/81
4+
https://github.com/pylint-dev/pylint-django/issues/81
55
"""
66
# pylint: disable=missing-docstring
77
fromdjango.dbimportmodels

‎pylint_django/tests/input/func_noerror_foreignkeys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class UserPreferences(models.Model):
7070
"""
7171
Used for testing FK which refers to another model by
7272
string, not model class, see
73-
https://github.com/PyCQA/pylint-django/issues/35
73+
https://github.com/pylint-dev/pylint-django/issues/35
7474
"""
7575

7676
user=ForeignKey("User",on_delete=models.CASCADE)

‎pylint_django/tests/input/func_noerror_generic_foreign_key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Checks that Pylint does not complain about GenericForeignKey fields:
3-
https://github.com/PyCQA/pylint-django/issues/230
3+
https://github.com/pylint-dev/pylint-django/issues/230
44
"""
55
# pylint: disable=missing-docstring
66

‎pylint_django/tests/input/func_noerror_model_objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Test that defining `objects` as a regular model manager
22
# doesn't raise issues, see
3-
# https://github.com/PyCQA/pylint-django/issues/144
3+
# https://github.com/pylint-dev/pylint-django/issues/144
44
#
55
# pylint: disable=missing-docstring
66

‎pylint_django/tests/input/func_noerror_protected_meta_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Tests to make sure that access to _meta on a model does not raise
33
a protected-access warning, as it is part of the public API since
44
Django 1.8
5-
(see https://github.com/PyCQA/pylint-django/issues/66,
5+
(see https://github.com/pylint-dev/pylint-django/issues/66,
66
and https://docs.djangoproject.com/en/1.9/ref/models/meta/)
77
"""
88
# pylint: disable=missing-docstring

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp