17 lines
354 B
INI
17 lines
354 B
INI
# EditorConfig: https://editorconfig.org/
|
|
# Follows the Zig style guide: https://ziglang.org/documentation/0.16.0/#Style-Guide
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_style = space
|
|
indent_size = 4
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.zig]
|
|
# "Line length: aim for 100; use common sense."
|
|
max_line_length = 100
|