Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ This server can be configured using the `workspace/didChangeConfiguration` metho
| `pylsp.rope.ropeFolder` | `array` of unique `string` items | The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all. | `null` |
| `pylsp.signature.formatter` | `string` (one of: `'black'`, `'ruff'`, `None`) | Formatter to use for reformatting signatures in docstrings. | `"black"` |
| `pylsp.signature.include_docstring` | `boolean` | Include signature docstring. | `true` |
| `pylsp.signature.line_length` | `number` | Maximum line length in signatures. | `88` |
| `pylsp.signature.line_length` | `integer` | Maximum line length in signatures. | `88` |

This documentation was generated from `pylsp/config/schema.json`. Please do not edit this file directly.
7 changes: 5 additions & 2 deletions pylsp/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@
"description": "List of errors and warnings to ignore (or skip)."
},
"pylsp.plugins.flake8.maxComplexity": {
"type": "integer",
"type": [
"integer",
"null"
],
"default": null,
"description": "Maximum allowed complexity threshold."
},
Expand Down Expand Up @@ -536,7 +539,7 @@
"description": "Include signature docstring."
},
"pylsp.signature.line_length": {
"type": "number",
"type": "integer",
"default": 88,
"description": "Maximum line length in signatures."
}
Expand Down
Loading