mamweb/.editorconfig

22 lines
381 B
INI
Raw Normal View History

2022-11-15 00:47:19 +01:00
root = true
[*]
charset = utf-8
# Unix-y lines
end_of_line = lf
insert_final_newline = true
[*.{py,css}]
2022-11-15 00:47:19 +01:00
indent_style = tab
# I do not think we prescribe, how big a tab is.
2022-11-15 12:49:11 +01:00
indent_size = unset
2022-11-15 00:47:19 +01:00
# Migrations are auto-generated and thus follow PEP-8, let's not fight with that
[*/migrations/*.py]
indent_style = space
indent_size = 4
2022-11-16 01:18:59 +01:00
[*.html]
indent_style = space
indent_size = 2