Skip to content

Commit

Permalink
style(editorconfig): add .editorconfig file (reanahub#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlemesh committed Oct 15, 2024
1 parent 97b0a62 commit aee31ce
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
root = true

[*]
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[*.{json,yml,yaml}]
indent_size = 2

[Makefile]
indent_style=tab

[*.py]
indent_size = 4
profile = black

[Dockerfile]
indent_size = 4

[*.md]
indent_size = 4
trim_trailing_whitespace = false

[*.sh]
indent_size = 4

[{go.mod,go.sum,*.go,}]
indent_style = tab
indent_size = 4

0 comments on commit aee31ce

Please sign in to comment.