debian-koji/.editorconfig
2024-09-18 09:17:35 +02:00

27 lines
586 B
INI

# Topmost editorconfig for project, don't ascend
# to parent directories when scanning configs
root = true
# All files: UTF-8 with Unix-style newlines,
# no trailing whitespace, and a final newline
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
# JavaScript, CSS, Python, shell: 4-space indents
[{**/*.{js,css,py,sh},runtests,cli/koji,vm/kojivmd}]
indent_style = space
indent_size = 4
# Makefile: tab indents
[**/Makefile]
indent_style = tab
tab_width = 8
# CHTML: 2-space indents
[**/*.chtml]
indent_style = space
indent_size = 2