diff --git a/README.md b/README.md index e48d24e9..1bd6d127 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ If you want to disable pylint, you can [disable this extension](https://code.vis | pylint.args | `[]` | Custom arguments passed to `pylint`. E.g `"pylint.args" = ["--rcfile="]` | | pylint.severity | `{ "convention": "Information", "error": "Error", "fatal": "Error", "refactor": "Hint", "warning": "Warning", "info": "Information" }` | Controls mapping of severity from `pylint` to VS Code severity when displaying in the problems window. You can override specific `pylint` error codes `{ "convention": "Information", "error": "Error", "fatal": "Error", "refactor": "Hint", "warning": "Warning", "W0611": "Error", "undefined-variable": "Warning" }` | | pylint.path | `[]` | Setting to provide custom `pylint` executable. This will slow down linting, since we will have to run `pylint` executable every time or file save or open. Example 1: `["~/global_env/pylint"]` Example 2: `["conda", "run", "-n", "lint_env", "python", "-m", "pylint"]` | -| pylint.interpreter | `[]` | Path to a python interpreter to use to run the linter server. | +| pylint.interpreter | `[]` | Path to a python interpreter to use to run the linter server. When set to `[]`, it will use the Python extension's selected interpreter. If it is set to a path, it will use that value as the interpreter. | | pylint.importStrategy | `useBundled` | Setting to choose where to load `pylint` from. `useBundled` picks pylint bundled with the extension. `fromEnvironment` uses `pylint` available in the environment. | | pylint.showNotification | `off` | Setting to control when a notification is shown. | | pylint.lintOnChange | `false` | (experimental) Setting to control linting on change feature. |