feature(editorconfig): add standard python settings

This commit is contained in:
Levente Polyak 2021-08-25 18:55:19 +02:00
parent 4967abcb0c
commit 4116f94fbb
No known key found for this signature in database
GPG Key ID: FC1B547C8D8172C8

View File

@ -1,6 +1,14 @@
root = true
[*]
end_of_line = lf
charset = utf-8
indent_style = tab
indent_size = 8
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.py]
indent_style = space
indent_size = 4
max_line_length = 119