Browse Source

Cover `go.mod` and `go.sum` in `.editorconfig` (#33960)

These files were previously set to use spaces for indendation but they
are supposed to use tabs, so set this in editorconfig.
pull/33984/head
silverwind 9 months ago committed by GitHub
parent
commit
d1a755e5b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      .editorconfig

3
.editorconfig

@ -12,6 +12,9 @@ insert_final_newline = true @@ -12,6 +12,9 @@ insert_final_newline = true
[*.{go,tmpl,html}]
indent_style = tab
[go.*]
indent_style = tab
[templates/custom/*.tmpl]
insert_final_newline = false

Loading…
Cancel
Save