Files
Pake/.editorconfig
2023-06-24 00:06:46 +08:00

27 lines
396 B
INI

root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Use 4 spaces for Python, Rust and Bash files
[*.{py,rs,sh}]
indent_size = 4
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
[*.bat]
indent_size = 2
[*.md]
trim_trailing_whitespace = false
[*.ts]
quote_type= "single"