Skip to content

Commit 63c464d

Browse files
Automated fix with the script
1 parent 4efa887 commit 63c464d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

0 commit comments

Comments
 (0)