0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-15 10:11:46 +02:00
synapse/.editorconfig
Sumner Evans 739adf1551
editorconfig: add max_line_length for Python files (#13228)
See the documentation for the property here:
https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length

Signed-off-by: Sumner Evans <me@sumnerevans.com>
2022-07-08 16:40:25 +00:00

11 lines
170 B
INI

# EditorConfig https://EditorConfig.org
# top-most EditorConfig file
root = true
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
max_line_length = 88