Visual Studio Pylint AutoFix code not showing on Ubuntu 17.04

I created a python project in visual studio code, and this is the debugging option that I use in my launch.json:

  {
            "name": "External Terminal/Console",
            "type": "python",
            "request": "launch",
            "stopOnEntry": false,
            "pythonPath": "${config:python.pythonPath}",
            "program": "${file}",
            "cwd": "",
            "console": "externalTerminal",
            "env": {},
            "envFile": "${workspaceRoot}/.env",
            "debugOptions": [
                "WaitOnAbnormalExit",
                "WaitOnNormalExit"
            ]
        }

I installed pylintand created a file settings.jsonthat looks something like this:

{
 "python.linting.pep8Enabled": true,
 "python.linting.pep8Path": "/usr/bin/pep8",
 "python.linting.pylintPath": "/usr/bin/pylint"
}

Linter errors are displayed pylint, but the light bubble indicator does not appear, which helps to automatically correct liner errors.

What causes this and how can I enable it lightbubble, which helps me fix linter errors, for example. Fix all autofixable errors.

+4
source share
1 answer

Yes, Pilint does not have a light bubble.

linter lightbubble, SonarLint.

0

Source: https://habr.com/ru/post/1680901/


All Articles