Commit 02c387ed authored by mewburn's avatar mewburn
Browse files

LI(23)P62014r2: .editorconfig for .asn

Provide .editorconfig file.

Globally, use UNIX-style formatting:
- UNIX linefeed for end of line
- Ensure files have a trailing newline.

.asn, .asn1, .xml, .xsd:
- 4 space indents (not tab)
- Trim trailing whitespace
parent d3483f9a
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+13 −0
Original line number Original line Diff line number Diff line
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[**]
end_of_line = lf
insert_final_newline = true

# ASN.1, XML: 4 space indents
[**.{asn,asn1,xml,xsd}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true