diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development_guide/contribute.rst | 4 | ||||
-rw-r--r-- | doc/how_tos/custom_checkers.rst | 2 | ||||
-rw-r--r-- | doc/user_guide/options.rst | 2 | ||||
-rw-r--r-- | doc/whatsnew/2.7.rst | 1 |
4 files changed, 5 insertions, 4 deletions
diff --git a/doc/development_guide/contribute.rst b/doc/development_guide/contribute.rst index b9a2385bd..5b2116e9c 100644 --- a/doc/development_guide/contribute.rst +++ b/doc/development_guide/contribute.rst @@ -156,9 +156,9 @@ If you need special control over Pylint's flag, you can also create a .rc file, can have sections of Pylint's configuration. During development, it's sometimes helpful to run all functional tests in your -current environment in order to have faster feedback. Run with:: +current environment in order to have faster feedback. Run from Pylint root directory with:: - python pylint/test/test_functional.py + python tests/test_functional.py .. _`Closing issues via commit messages`: https://help.github.com/articles/closing-issues-via-commit-messages/ .. _`About pull requests`: https://help.github.com/articles/using-pull-requests/ diff --git a/doc/how_tos/custom_checkers.rst b/doc/how_tos/custom_checkers.rst index 4285def49..9787bf745 100644 --- a/doc/how_tos/custom_checkers.rst +++ b/doc/how_tos/custom_checkers.rst @@ -80,7 +80,7 @@ So far we have defined the following required components of our checker: ) } - * The ``message-id`` should be a 5-digit number, + * The ``message-id`` should be a 4-digit number, prefixed with a **message category**. There are multiple message categories, these being ``C``, ``W``, ``E``, ``F``, ``R``, diff --git a/doc/user_guide/options.rst b/doc/user_guide/options.rst index 2d459171c..dc464812a 100644 --- a/doc/user_guide/options.rst +++ b/doc/user_guide/options.rst @@ -113,7 +113,7 @@ expression will lead to an instance of ``invalid-name``. .. option:: --inlinevar-rgx=<regex> Multiple naming styles for custom regular expressions -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Large code bases that have been worked on for multiple years often exhibit an evolution in style as well. In some cases, modules can be in the same package, diff --git a/doc/whatsnew/2.7.rst b/doc/whatsnew/2.7.rst index b762b0239..3ffd27eb1 100644 --- a/doc/whatsnew/2.7.rst +++ b/doc/whatsnew/2.7.rst @@ -13,6 +13,7 @@ Summary -- Release highlights New checkers ============ +* Add `empty-comment` check for empty comments. Other Changes ============= |