mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
2681c02afd
This should automatically set the tab size to 8 spaces and add a visual guide (ruler) at 80 characters in GoLand, GitHub and a few other editors.
17 lines
328 B
INI
17 lines
328 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
# Top-most EditorConfig file.
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file.
|
|
[*.md]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
max_line_length = 80
|
|
|
|
# 8 space indentation for Golang code.
|
|
[*.go]
|
|
indent_style = tab
|
|
indent_size = 8
|
|
max_line_length = 80
|