Skip to content

Commit

Permalink
Add .editorconfig support (#653)
Browse files Browse the repository at this point in the history
* feat: add .editorconfig support

* Added record to changes list

Co-authored-by: Alex Root Junior <jroot.junior@gmail.com>
  • Loading branch information
Olegt0rr and JrooTJunior committed Aug 3, 2021
1 parent 18b268f commit 89f7deb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
root = true

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

[*.py]
indent_style = space
indent_size = 4
max_line_length = 99

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

[*.{md,txt}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
1 change: 1 addition & 0 deletions CHANGES/650.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added `.editorconfig`

0 comments on commit 89f7deb

Please sign in to comment.