Skip to content

Commit

Permalink
[PyCQA migration] Upgrade links to the repositories in code and doc (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas authored Mar 29, 2023
1 parent 1be16bb commit 9f2de91
Show file tree
Hide file tree
Showing 503 changed files with 1,225 additions and 1,221 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ body:
⚠ Please make sure that this [issue wasn't already requested][issue search], or already implemented in the main branch.
[issue search]: https://github.com/PyCQA/pylint/issues?q=is%3Aissue+is%3Aopen+
[issue search]: https://github.com/pylint-dev/pylint/issues?q=is%3Aissue+is%3Aopen+
- type: textarea
id: what-happened
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ body:
⚠ Please make sure that [this feature wasn't already requested][issue search] or already implemented in the main branch.
[issue search]: https://github.com/PyCQA/pylint/issues?q=is%3Aissue+is%3Aopen+
[issue search]: https://github.com/pylint-dev/pylint/issues?q=is%3Aissue+is%3Aopen+
- type: textarea
id: current-problem
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/QUESTION.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ body:
on Discord][Discussions].
[issue search]: https://github.com/PyCQA/pylint/issues?q=is%3Aissue+is%3Aopen+
[issue search]:
https://github.com/pylint-dev/pylint/issues?q=is%3Aissue+is%3Aopen+
[Discussions]: https://discord.com/invite/Egy6P8AMB5
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

.. This is used inside the doc to recover the start of the introduction
.. image:: https://github.com/PyCQA/pylint/actions/workflows/tests.yaml/badge.svg?branch=main
:target: https://github.com/PyCQA/pylint/actions
.. image:: https://github.com/pylint-dev/pylint/actions/workflows/tests.yaml/badge.svg?branch=main
:target: https://github.com/pylint-dev/pylint/actions

.. image:: https://codecov.io/gh/PyCQA/pylint/branch/main/graph/badge.svg?token=ZETEzayrfk
:target: https://codecov.io/gh/PyCQA/pylint
Expand All @@ -23,7 +23,7 @@
:target: https://github.com/ambv/black

.. image:: https://img.shields.io/badge/linting-pylint-yellowgreen
:target: https://github.com/PyCQA/pylint
:target: https://github.com/pylint-dev/pylint

.. image:: https://results.pre-commit.ci/badge/github/PyCQA/pylint/main.svg
:target: https://results.pre-commit.ci/latest/github/PyCQA/pylint/main
Expand Down Expand Up @@ -174,7 +174,7 @@ Please follow the `code of conduct`_ and check `the Contributor Guides`_ if you
make a code contribution.

.. _creating issues because you found a bug or want a feature: https://pylint.readthedocs.io/en/latest/contact.html#bug-reports-feedback
.. _code of conduct: https://github.com/PyCQA/pylint/blob/main/CODE_OF_CONDUCT.md
.. _code of conduct: https://github.com/pylint-dev/pylint/blob/main/CODE_OF_CONDUCT.md
.. _the Contributor Guides: https://pylint.readthedocs.io/en/latest/development_guide/contribute.html

.. This is used inside the doc to recover the end of the short text for contribution
Expand All @@ -185,7 +185,7 @@ Show your usage
You can place this badge in your README to let others know your project uses pylint.

.. image:: https://img.shields.io/badge/linting-pylint-yellowgreen
:target: https://github.com/PyCQA/pylint
:target: https://github.com/pylint-dev/pylint

Learn how to add a badge to your documentation in the `the badge documentation`_.

Expand All @@ -194,7 +194,7 @@ Learn how to add a badge to your documentation in the `the badge documentation`_
License
-------

pylint is, with a few exceptions listed below, `GPLv2 <https://github.com/PyCQA/pylint/blob/main/LICENSE>`_.
pylint is, with a few exceptions listed below, `GPLv2 <https://github.com/pylint-dev/pylint/blob/main/LICENSE>`_.

The icon files are licensed under the `CC BY-SA 4.0 <https://creativecommons.org/licenses/by-sa/4.0/>`_ license:

Expand Down
10 changes: 6 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

from __future__ import annotations

Expand Down Expand Up @@ -297,7 +297,9 @@
autosectionlabel_prefix_document = True

# Permit duplicated titles in the resulting document.
# See https://github.com/PyCQA/pylint/issues/7362#issuecomment-1256932866
# See https://github.com/pylint-dev/pylint/issues/7362#issuecomment-1256932866
autosectionlabel_maxdepth = 2

linkcheck_ignore = ["https://github.com/PyCQA/pylint/blob/main/pylint/extensions/.*"]
linkcheck_ignore = [
"https://github.com/pylint-dev/pylint/blob/main/pylint/extensions/.*"
]
2 changes: 1 addition & 1 deletion doc/contact.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ You think you have found a bug in Pylint? Well, this may be the case
since Pylint and Python are under heavy development!

Please take the time to check if it is already in the issue tracker at
https://github.com/PyCQA/pylint
https://github.com/pylint-dev/pylint

Note that the issue might also be reported in one of Pylint's major dependencies,
astroid:
Expand Down
2 changes: 1 addition & 1 deletion doc/data/messages/b/bad-format-character/details.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
This check is currently only active for "old-style" string formatting as seen in the examples.
See `Issue #6085 <https://github.com/PyCQA/pylint/issues/6085>`_ for more information.
See `Issue #6085 <https://github.com/pylint-dev/pylint/issues/6085>`_ for more information.
2 changes: 1 addition & 1 deletion doc/data/messages/b/bad-plugin-value/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/b/bad-string-format-type/details.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
This check is currently only active for "old-style" string formatting as seen in the examples.
See `Issue #6085 <https://github.com/PyCQA/pylint/issues/6163>`_ for more information.
See `Issue #6085 <https://github.com/pylint-dev/pylint/issues/6163>`_ for more information.
2 changes: 1 addition & 1 deletion doc/data/messages/c/c-extension-no-member/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
4 changes: 2 additions & 2 deletions doc/data/messages/c/consider-using-generator/related.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
- `PEP 289 <https://peps.python.org/pep-0289/>`_
- `Benchmark and discussion for any/all/list/tuple <https://github.com/PyCQA/pylint/pull/3309#discussion_r576683109>`_
- `Benchmark and discussion for sum/max/min <https://github.com/PyCQA/pylint/pull/6595#issuecomment-1125704244>`_
- `Benchmark and discussion for any/all/list/tuple <https://github.com/pylint-dev/pylint/pull/3309#discussion_r576683109>`_
- `Benchmark and discussion for sum/max/min <https://github.com/pylint-dev/pylint/pull/6595#issuecomment-1125704244>`_
2 changes: 1 addition & 1 deletion doc/data/messages/c/cyclic-import/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/f/fixme/details.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
You can get use regular expressions and the ``notes-rgx`` option to create some constraints for this message.
See `the following issue <https://github.com/PyCQA/pylint/issues/2874>`_ for some examples.
See `the following issue <https://github.com/pylint-dev/pylint/issues/2874>`_ for some examples.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/i/invalid-character-nul/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/l/line-too-long/details.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Pragma controls such as ``# pylint: disable=all`` are not counted toward line le

If you attempt to disable this message via ``# pylint: disable=line-too-long`` in a module with no code, you may receive a message for ``useless-suppression``. This is a false positive of ``useless-suppression`` we can't easily fix.

See https://github.com/PyCQA/pylint/issues/3368 for more information.
See https://github.com/pylint-dev/pylint/issues/3368 for more information.
2 changes: 1 addition & 1 deletion doc/data/messages/m/mixed-line-endings/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/r/raw-checker-failed/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/r/relative-beyond-top-level/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/u/unrecognized-option/details.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
2 changes: 1 addition & 1 deletion doc/data/messages/u/use-a-generator/related.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- `PEP 289 – Generator Expressions <https://peps.python.org/pep-0289/>`_
- `Benchmark and discussion during initial implementation <https://github.com/PyCQA/pylint/pull/3309#discussion_r576683109>`_
- `Benchmark and discussion during initial implementation <https://github.com/pylint-dev/pylint/pull/3309#discussion_r576683109>`_
2 changes: 1 addition & 1 deletion doc/data/messages/u/useless-option-value/bad.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""'bad-continuation' was removed from pylint in https://github.com/PyCQA/pylint/pull/3571"""
"""'bad-continuation' was removed from pylint in https://github.com/pylint-dev/pylint/pull/3571"""

# pylint: disable=bad-continuation # [useless-option-value]
2 changes: 1 addition & 1 deletion doc/data/messages/u/useless-option-value/good.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""'bad-continuation' was removed from pylint in https://github.com/PyCQA/pylint/pull/3571"""
"""'bad-continuation' was removed from pylint in https://github.com/pylint-dev/pylint/pull/3571"""
32 changes: 16 additions & 16 deletions doc/development_guide/contributor_guide/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ Here's a list of links you can check depending on what you want to do:
- `Reviewing pull requests`_

.. _`Asking a question on discord`: https://discord.com/invite/qYxpadCgkx
.. _`on github`: https://github.com/PyCQA/pylint/issues/new/choose
.. _`Opening an issue`: https://github.com/PyCQA/pylint/issues/new?assignees=&labels=Needs+triage+%3Ainbox_tray%3A&template=BUG-REPORT.yml
.. _`Making the documentation better`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Documentation+%3Agreen_book%3A%22
.. _`Making the error message better`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+project%3Apycqa%2Fpylint%2F4+
.. _`Reproducing bugs and confirming that issues are valid`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+reproduction+%3Amag%3A%22%2C%22Cannot+reproduce+%F0%9F%A4%B7%22
.. _`Investigating or debugging complicated issues`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+investigation+%F0%9F%94%AC%22
.. _`Designing or specifying a solution`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+design+proposal+%3Alock%3A%22%2C%22Needs+specification+%3Aclosed_lock_with_key%3A%22
.. _`Giving your opinion on ongoing discussion`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+decision+%3Alock%3A%22
.. _`Fixing bugs and crashes`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Bug+%3Abeetle%3A%22%2C%22Crash+%F0%9F%92%A5%22
.. _`Fixing false positives`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22False+Positive+%F0%9F%A6%9F%22
.. _`Creating new features or fixing false negatives`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22False+Negative+%F0%9F%A6%8B%22%2C%22Enhancement+%E2%9C%A8%22
.. _`Reviewing pull requests`: https://github.com/PyCQA/pylint/pulls?q=is%3Aopen+is%3Apr+label%3A%22Needs+review+%F0%9F%94%8D%22
.. _`on github`: https://github.com/pylint-dev/pylint/issues/new/choose
.. _`Opening an issue`: https://github.com/pylint-dev/pylint/issues/new?assignees=&labels=Needs+triage+%3Ainbox_tray%3A&template=BUG-REPORT.yml
.. _`Making the documentation better`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Documentation+%3Agreen_book%3A%22
.. _`Making the error message better`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+project%3Apycqa%2Fpylint%2F4+
.. _`Reproducing bugs and confirming that issues are valid`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+reproduction+%3Amag%3A%22%2C%22Cannot+reproduce+%F0%9F%A4%B7%22
.. _`Investigating or debugging complicated issues`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+investigation+%F0%9F%94%AC%22
.. _`Designing or specifying a solution`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+design+proposal+%3Alock%3A%22%2C%22Needs+specification+%3Aclosed_lock_with_key%3A%22
.. _`Giving your opinion on ongoing discussion`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+decision+%3Alock%3A%22
.. _`Fixing bugs and crashes`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Bug+%3Abeetle%3A%22%2C%22Crash+%F0%9F%92%A5%22
.. _`Fixing false positives`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22False+Positive+%F0%9F%A6%9F%22
.. _`Creating new features or fixing false negatives`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22False+Negative+%F0%9F%A6%8B%22%2C%22Enhancement+%E2%9C%A8%22
.. _`Reviewing pull requests`: https://github.com/pylint-dev/pylint/pulls?q=is%3Aopen+is%3Apr+label%3A%22Needs+review+%F0%9F%94%8D%22


If you are a pylint maintainer there's also:
Expand All @@ -45,10 +45,10 @@ If you are a pylint maintainer there's also:
- `Preparing the next patch release`_
- `Checking stale pull requests status`_

.. _`Triaging issues`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+triage+%3Ainbox_tray%3A%22
.. _`Labeling issues that do not have an actionable label yet`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+-label%3A%22Needs+astroid+Brain+%F0%9F%A7%A0%22+-label%3A%22Needs+astroid+update%22+-label%3A%22Needs+backport%22+-label%3A%22Needs+decision+%3Alock%3A%22+-label%3A%22Needs+investigation+%F0%9F%94%AC%22+-label%3A%22Needs+PR%22+-label%3A%22Needs+reproduction+%3Amag%3A%22+-label%3A%22Needs+review+%F0%9F%94%8D%22+-label%3A%22Needs+triage+%3Ainbox_tray%3A%22+-label%3A%22Waiting+on+author%22+-label%3A%22Work+in+progress%22+-label%3AMaintenance+sort%3Aupdated-desc+-label%3A%22Needs+specification+%3Aclosed_lock_with_key%3A%22+-label%3A%22Needs+design+proposal+%3Alock%3A%22
.. _`Preparing the next patch release`: https://github.com/PyCQA/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+backport%22
.. _`Checking stale pull requests status`: https://github.com/PyCQA/pylint/pulls?q=is%3Aopen+is%3Apr+label%3A%22Work+in+progress%22%2C%22Needs+astroid+update%22%2C%22Waiting+on+author%22
.. _`Triaging issues`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+triage+%3Ainbox_tray%3A%22
.. _`Labeling issues that do not have an actionable label yet`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+-label%3A%22Needs+astroid+Brain+%F0%9F%A7%A0%22+-label%3A%22Needs+astroid+update%22+-label%3A%22Needs+backport%22+-label%3A%22Needs+decision+%3Alock%3A%22+-label%3A%22Needs+investigation+%F0%9F%94%AC%22+-label%3A%22Needs+PR%22+-label%3A%22Needs+reproduction+%3Amag%3A%22+-label%3A%22Needs+review+%F0%9F%94%8D%22+-label%3A%22Needs+triage+%3Ainbox_tray%3A%22+-label%3A%22Waiting+on+author%22+-label%3A%22Work+in+progress%22+-label%3AMaintenance+sort%3Aupdated-desc+-label%3A%22Needs+specification+%3Aclosed_lock_with_key%3A%22+-label%3A%22Needs+design+proposal+%3Alock%3A%22
.. _`Preparing the next patch release`: https://github.com/pylint-dev/pylint/issues?q=is%3Aopen+is%3Aissue+label%3A%22Needs+backport%22
.. _`Checking stale pull requests status`: https://github.com/pylint-dev/pylint/pulls?q=is%3Aopen+is%3Apr+label%3A%22Work+in+progress%22%2C%22Needs+astroid+update%22%2C%22Waiting+on+author%22


Creating a pull request
Expand Down
2 changes: 1 addition & 1 deletion doc/development_guide/contributor_guide/tests/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pylint is developed using the git_ distributed version control system.

You can clone Pylint using ::

git clone https://github.com/PyCQA/pylint
git clone https://github.com/pylint-dev/pylint

Before you start testing your code, you need to install your source-code package locally.
Suppose you just cloned pylint with the previous ``git clone`` command. To set up your
Expand Down
6 changes: 3 additions & 3 deletions doc/development_guide/how_tos/custom_checkers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
How to Write a Checker
======================
You can find some simple examples in the distribution
(`custom.py <https://github.com/PyCQA/pylint/blob/main/examples/custom.py>`_
(`custom.py <https://github.com/pylint-dev/pylint/blob/main/examples/custom.py>`_
,
`custom_raw.py <https://github.com/PyCQA/pylint/blob/main/examples/custom_raw.py>`_
`custom_raw.py <https://github.com/pylint-dev/pylint/blob/main/examples/custom_raw.py>`_
and
`deprecation_checker.py <https://github.com/PyCQA/pylint/blob/main/examples/deprecation_checker.py>`_).
`deprecation_checker.py <https://github.com/pylint-dev/pylint/blob/main/examples/deprecation_checker.py>`_).

.. TODO Create custom_token.py
Expand Down
4 changes: 2 additions & 2 deletions doc/exts/pylint_extensions.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Script used to generate the extensions file before building the actual documentation."""

Expand Down
4 changes: 2 additions & 2 deletions doc/exts/pylint_features.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Script used to generate the features file before building the actual
documentation.
Expand Down
6 changes: 3 additions & 3 deletions doc/exts/pylint_messages.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Script used to generate the messages files."""

Expand Down Expand Up @@ -336,7 +336,7 @@ def _generate_checker_url(message: MessageData) -> str:
checker_module_rel_path = os.path.relpath(
message.checker_module_path, PYLINT_BASE_PATH
)
return f"https://github.com/PyCQA/pylint/blob/main/{checker_module_rel_path}"
return f"https://github.com/pylint-dev/pylint/blob/main/{checker_module_rel_path}"


def _write_single_shared_message_page(
Expand Down
4 changes: 2 additions & 2 deletions doc/exts/pylint_options.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Script used to generate the options page."""

Expand Down
4 changes: 2 additions & 2 deletions doc/test_messages_documentation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt

"""Functional tests for the code examples in the messages' documentation."""

Expand Down
Loading

0 comments on commit 9f2de91

Please sign in to comment.