@@ -21,7 +21,7 @@ Release date: 2014-07-26
2121
2222 Closes #205.
2323
24- * Emit ' undefined-variable' for undefined names when using the
24+ * Emit :ref: ` undefined-variable ` for undefined names when using the
2525 Python 3 ``metaclass= `` argument.
2626
2727* Checkers respect priority now.
@@ -32,29 +32,29 @@ Release date: 2014-07-26
3232
3333 Closes #149.
3434
35- * Fix unused-import false positive with Python 3 metaclasses
35+ * Fix :ref: ` unused-import ` false positive with Python 3 metaclasses
3636
3737 Closes #143
3838
39- * Don't warn with ' bad-format-character' when encountering
39+ * Don't warn with :ref: ` bad-format-character ` when encountering
4040 the 'a' format on Python 3.
4141
4242* Add multiple checks for PEP 3101 advanced string formatting:
43- ' bad-format-string', ' missing-format-argument-key' ,
44- ' unused-format-string-argument', ' format-combined-specification' ,
45- ' missing-format-attribute' and ' invalid-format-index' .
43+ :ref: ` bad-format-string `, :ref: ` missing-format-argument-key ` ,
44+ :ref: ` unused-format-string-argument `, :ref: ` format-combined-specification ` ,
45+ :ref: ` missing-format-attribute ` and :ref: ` invalid-format-index ` .
4646
47- * Issue broad-except and bare-except even if the number
47+ * Issue :ref: ` broad-except ` and :ref: ` bare-except ` even if the number
4848 of except handlers is different than 1.
4949
5050 Closes #113
5151
52- * Issue attribute-defined-outside-init for all cases, not just
52+ * Issue :ref: ` attribute-defined-outside-init ` for all cases, not just
5353 for the last assignment.
5454
5555 Closes #262
5656
57- * Emit ' not-callable' when calling properties.
57+ * Emit :ref: ` not-callable ` when calling properties.
5858
5959 Closes #268.
6060
@@ -63,17 +63,17 @@ Release date: 2014-07-26
6363
6464 Closes #273.
6565
66- * Add new checks, ' invalid-slice-index' and ' invalid-sequence-index'
66+ * Add new checks, :ref: ` invalid-slice-index ` and :ref: ` invalid-sequence-index `
6767 for invalid sequence and slice indices.
6868
69- * Add ' assigning-non-slot' warning, which detects assignments to
69+ * Add :ref: ` assigning-non-slot ` warning, which detects assignments to
7070 attributes not defined in slots.
7171
72- * Don't emit ' no-name-in-module' for ignored modules.
72+ * Don't emit :ref: ` no-name-in-module ` for ignored modules.
7373
7474 Closes #223.
7575
76- * Fix an ' unused-variable' false positive, where the variable is
76+ * Fix an :ref: ` unused-variable ` false positive, where the variable is
7777 assigned through an import.
7878
7979 Closes #196.
@@ -83,7 +83,7 @@ Release date: 2014-07-26
8383
8484 Closes #257.
8585
86- * Don't emit ' unused-variable' when assigning to a nonlocal.
86+ * Don't emit :ref: ` unused-variable ` when assigning to a nonlocal.
8787
8888 Closes #275.
8989
@@ -92,7 +92,7 @@ Release date: 2014-07-26
9292
9393 Closes #203.
9494
95- * Don't emit ' pointless-string-statement' for attribute docstrings.
95+ * Don't emit :ref: ` pointless-string-statement ` for attribute docstrings.
9696
9797 Closes #193.
9898
@@ -103,14 +103,14 @@ Release date: 2014-07-26
103103* Don't emit hidden-method message when the attribute has been
104104 monkey-patched, you're on your own when you do that.
105105
106- * Only emit attribute-defined-outside-init for definition within the same
106+ * Only emit :ref: ` attribute-defined-outside-init ` for definition within the same
107107 module as the offended class, avoiding to mangle the output in some cases.
108108
109- * Don't emit ' unnecessary-lambda' if the body of the lambda call contains
109+ * Don't emit :ref: ` unnecessary-lambda ` if the body of the lambda call contains
110110 call chaining.
111111
112112 Closes #243.
113113
114- * Don't emit ' missing-docstring' when the actual docstring uses ``.format ``.
114+ * Don't emit :ref: ` missing-docstring ` when the actual docstring uses ``.format ``.
115115
116116 Closes #281.
0 commit comments