From 8630cfd34a211b0d8135dbd79244a1fab4780b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Fri, 27 Sep 2024 16:37:11 +0200 Subject: [PATCH] Fix the VS Code extension link syntax @ FAQ (#9975) This document is in RST, but the link was mistakenly formatted using Markdown. --- doc/faq.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/faq.rst b/doc/faq.rst index ec624da6b1..a828e3dc8e 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -72,8 +72,7 @@ I want to run pylint on each keystroke in my IDE. How do I do that? Pylint full suite of checks will never be fast enough to run on every keystroke. However, some IDEs can run pylint when the IDE opens or saves files. -See, for example, the -[Microsoft plugin for vs-code](https://github.com/microsoft/vscode-pylint?tab=readme-ov-file#pylint-extension-for-visual-studio-code). +See, for example, the `Microsoft plugin for VS Code`_. That said, pylint is best suited for linting on save for small projects, for continuous @@ -85,6 +84,8 @@ option, which will remove all the refactor, convention, and warning checks. You checks with inherently high complexity that need to analyse the full code base like ``duplicate-code`` or ``cyclic-import`` (this list is not exhaustive). +.. _`Microsoft plugin for VS Code`: https://github.com/microsoft/vscode-pylint#readme + Why do I have non-deterministic results when I try to parallelize pylint ? --------------------------------------------------------------------------