Skip to content

Commit

Permalink
update default interpreter description
Browse files Browse the repository at this point in the history
Signed-off-by: Akanksha Kushwaha <[email protected]>
  • Loading branch information
aku1310 committed Sep 22, 2023
1 parent e3e7cc9 commit c10e4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<file>"]` |
| 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. |
Expand Down

0 comments on commit c10e4f8

Please sign in to comment.