mirror of
https://github.com/go-ping/ping.git
synced 2025-04-27 10:31:15 +00:00
EditorConfig (https://editorconfig.org) is a dotfile which stores configuration that is supported by a wide variety of text editors and IDEs both natively and with plugins. This allows us to enforce project standards such as line endings and indentation style. Signed-off-by: Charlie Jonas <charlie@charliejonas.co.uk>
17 lines
217 B
INI
17 lines
217 B
INI
# https://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
indent_style = space
|
|
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
[*.go]
|
|
indent_style = tab
|