Skip to content

Commit

Permalink
feat(.editorconfig): add new file with configuration settings
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Aug 21, 2023
1 parent a6a0a6d commit 6abc735
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .copier-template/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Check http://editorconfig.org for more information

# top-most .editorconfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
indent_style = space

[*.py]
profile = black

[Makefile]
indent_style = tab

[*.md]
trim_trailing_whitespace = false

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

0 comments on commit 6abc735

Please sign in to comment.