Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix config file setting in readme #156

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ If you want to disable autopep8 formatter, you can [disable this extension](http

| Settings | Default | Description |
| ------------------------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| autopep8.args | `[]` | Custom arguments passed to `autopep8`. E.g `"autopep8.args" = ["--config", "<file>"]` |
| autopep8.args | `[]` | Custom arguments passed to `autopep8`. E.g `"autopep8.args" = ["--global-config", "<file>"]` |
| autopep8.path | `[]` | Setting to provide custom `autopep8` executable. This will slow down formatting, since we will have to run `autopep8` executable every time or file save or open. Example 1: `["~/global_env/autopep8"]` Example 2: `["conda", "run", "-n", "lint_env", "python", "-m", "autopep8"]` |
| autopep8.interpreter | `[]` | Path to a python interpreter to use to run the linter server. |
| autopep8.importStrategy | `useBundled` | Setting to choose where to load `autopep8` from. `useBundled` picks autopep8 bundled with the extension. `fromEnvironment` uses `autopep8` available in the environment. |
Expand Down