"cornflakes-linter" is a wrapper for flake8.
** added onType linting (0.5) **
vscode currently already has flake8 integration HOWEVER it doesn't play nicely with flake8 plugins in that the regex can't parse the output correctly. This means that the errors/warnings/information do not show up in the problems tab. This extension rectifies that.
- Make sure you have installed flake8 somewhere..
- Set the path to the flake8 in
Settings.json(or search in the vscode settings tab).
{
"cornflakes.linter.executablePath": "path/to/venvs/myvenv/bin/flake8"
}- Open a
.pyfile and then save it and the extension will run showing all of the lint issues in the problems tab.
You need to include the full path to the flake8 executable that you wish to use.
To find the path to the appropriate flake8 you can (on *nix) do:
which flake8On Windows (PowerShell / command.exe)
where.exe flake8The set it in Settings.json
{
"cornflakes.linter.executablePath": "path/to/venvs/myvenv/bin/flake8"
}There are a couple of options here so that you can decide when to re-lint the current file. You can choose either on save or on type! Again all settings are available through the settings page, or the json.
{
"cornflakes.linter.run": "onType"
}The way to configure flake8 extensions / settings / ignores and all other configuration for flake8 is by using the standard flake8 configuration rules. The extension will be run from the root directory of the workspace.
Personally I like a tox.ini in the workspace root.
[flake8]
ignore = E226,E302,E41
max-line-length = 88
exclude = tests/*
max-complexity = 10And is virtually a direct copy of ruby-linter.
The extension architecture is based off of the PHPValidationProvider from the built-in php extension.