Skip to content

Commit 9cf46b6

Browse files
Automated fix with the script
1 parent 38b7320 commit 9cf46b6

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- `Stackoverflow explanation for 'useless-super-delegation' <https://stackoverflow.com/a/51030674/2519059>`_
1+
- `Stackoverflow explanation for ':ref:`useless-super-delegation`' <https://stackoverflow.com/a/51030674/2519059>`_

doc/whatsnew/1/1.6/summary.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ New features
8383
contains more forward-looking functions::
8484

8585
$ cat a.py
86-
# Oups, now pylint emits a redefined-builtin message.
86+
# Oups, now pylint emits a :ref:`redefined-builtin` message.
8787
from six.moves import open
8888
$ pylint a.py --redefining-builtins-modules=six.moves
8989

@@ -120,9 +120,9 @@ Other Changes
120120
This allows having comments inside list values, in the configuration,
121121
such as::
122122

123-
disable=no-member,
123+
disable=:ref:`no-member`,
124124
# Don't like this check
125-
bad-indentation
125+
:ref:`bad-indentation`
126126

127127
* We now use the isort_ package internally.
128128

doc/whatsnew/1/1.7/summary.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -696,15 +696,15 @@ Other Changes
696696
For instance, you can now use the **#** sign for having comments inside
697697
comma separated values, as seen below::
698698

699-
disable=no-member, # Don't care about it for now
700-
bad-indentation, # No need for this
701-
import-error
699+
disable=:ref:`no-member`, # Don't care about it for now
700+
:ref:`bad-indentation`, # No need for this
701+
:ref:`import-error`
702702

703703
Of course, interweaving comments with values is also working::
704704

705-
disable=no-member,
705+
disable=:ref:`no-member`,
706706
# Don't care about it for now
707-
bad-indentation # No need for this
707+
:ref:`bad-indentation` # No need for this
708708

709709

710710
This works by setting the `inline comment prefixes`_ accordingly.

doc/whatsnew/2/2.5/full.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Release date: 2020-06-8
2424
* In a TOML configuration file, it's now possible to use rich (non-string) types, such as list, integer or boolean instead of strings. For example, one can now define a *list* of message identifiers to enable like this::
2525

2626
enable = [
27-
"use-symbolic-message-instead",
28-
"useless-suppression",
27+
":ref:`use-symbolic-message-instead`",
28+
":ref:`useless-suppression`",
2929
]
3030

3131
Closes #3538

doc/whatsnew/4/4.0/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ False Negatives Fixed
285285

286286
Closes #9770 (`#9770 <https://github.com/pylint-dev/pylint/issues/9770>`_)
287287

288-
- Fix false negative where function-redefined (E0102) was not reported for functions with a leading underscore.
288+
- Fix false negative where :ref:`function-redefined` (E0102) was not reported for functions with a leading underscore.
289289

290290
Closes #9894 (`#9894 <https://github.com/pylint-dev/pylint/issues/9894>`_)
291291

@@ -327,7 +327,7 @@ Other Bug Fixes
327327

328328
Closes #8736. (`#8736 <https://github.com/pylint-dev/pylint/issues/8736>`_)
329329

330-
- Fixed unidiomatic-typecheck only checking left-hand side.
330+
- Fixed :ref:`unidiomatic-typecheck` only checking left-hand side.
331331

332332
Closes #10217 (`#10217 <https://github.com/pylint-dev/pylint/issues/10217>`_)
333333

0 commit comments

Comments
 (0)