|
def pylsp_settings(): |
|
"""Configuration options that can be set on the client.""" |
|
return { |
|
"plugins": { |
|
"black": { |
|
"enabled": True, |
|
"line_length": 88, |
|
"preview": False, |
|
"cache_config": False, |
|
}, |
|
"yapf": {"enabled": False}, |
|
"autopep8": {"enabled": False}, |
|
} |
|
} |
Should skip_magic_trailing_comma and skip_string_normalization be included here?
python-lsp-black/pylsp_black/plugin.py
Lines 50 to 63 in 27200ee
Should
skip_magic_trailing_commaandskip_string_normalizationbe included here?