unison/.editorconfig
Greg Pfeil efcff6e076
Add an EditorConfig config
https://editorconfig.org/

This provides limited editor-agnostic style information.

The only one I care about here is `max_line_length`, since Ormolu doesn’t manage
that. It sets up my editor so that comments wrap at the expected place, and
gives me a hint when expressions should be split.

The other values just seem like reasonable ones, but they can also be
removed (and/or customized for particular file types).
2024-05-28 17:17:22 -06:00

12 lines
208 B
INI

# Multi-editor style config: https://EditorConfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true