attic/.editorconfig
2022-12-31 17:01:07 -07:00

30 lines
543 B
INI

# EditorConfig configuration for Attic
# Top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file, utf-8 charset
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
# Rust
[*.rs]
indent_style = space
indent_size = 2
# Misc
[*.{yaml,yml,md,nix}]
indent_style = space
indent_size = 2
[attic/src/nix_store/tests/nar/**]
charset = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset