summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-11-28 19:29:46 +0100
committerGitHub <noreply@github.com>2020-11-28 20:29:46 +0200
commit7ed5bf8cbe06bf2cfc4980cf6e020dc46dd71a79 (patch)
tree236d1cd6a7104bea7464c58be3f9256513b173ce /.editorconfig
parent8c996c65053296e997718265c4f4cb08c2d9dffb (diff)
downloadgitea-7ed5bf8cbe06bf2cfc4980cf6e020dc46dd71a79.tar.gz
gitea-7ed5bf8cbe06bf2cfc4980cf6e020dc46dd71a79.zip
Fix .editorconfig (#13735)
These whitespaces introduced in #13698 seem to break my editorconfig plugin in sublime text resulting in tab-indented files getting converted to spaces on save. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index bd21b2683a..54738e8838 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -9,7 +9,7 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
-[*.{go, tmpl, html}]
+[*.{go,tmpl,html}]
indent_style = tab
[Makefile]