diff --git a/docs/profiles.rst b/docs/profiles.rst index 4ec87446..e198ae8e 100644 --- a/docs/profiles.rst +++ b/docs/profiles.rst @@ -142,6 +142,20 @@ but you can turn it on using the ``--member-warnings`` flag or in a profile:: member-warnings: true +Pylint Plugins +''''''''''''''' + +It is possible to specify list of plugins for Pylint. You can do this by using ``load-plugins`` +option in ``pylint`` section:: + + pylint: + load-plugins: + - plugin + - plugin + +Note that this option doesn't affect loading of :ref:`autodetected plugins `. + + PEP8 Control ............