diff options
author | Markus Wüstenberg | 2020-09-13 22:50:19 +0200 |
---|---|---|
committer | Markus Wüstenberg | 2020-09-13 22:50:19 +0200 |
commit | fc3cc0f0f3a59bf4fe27a4e32dc2ef420b3fa2f8 (patch) | |
tree | f3f933970dccd06a347613d3663035c023ac0017 /.editorconfig | |
download | gomponents-fc3cc0f0f3a59bf4fe27a4e32dc2ef420b3fa2f8.tar.lz gomponents-fc3cc0f0f3a59bf4fe27a4e32dc2ef420b3fa2f8.tar.zst gomponents-fc3cc0f0f3a59bf4fe27a4e32dc2ef420b3fa2f8.zip |
Add first implementation of Node, El, Attr, Text
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1fd14ef --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[Makefile] +indent_style = tab + +[*.go] +indent_style = tab |