Skip to content

Commit

Permalink
fix: template file helps consistent clean coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Jun 2, 2021
1 parent a92a067 commit 2118ae2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# https://editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
max_line_length = 80
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.html]
indent_size = 2
max_line_length = off

[*.py]
max_line_length = 79

[*.yml]
indent_size = 2
max_line_length = off

[package.json]
indent_style = space
indent_size = 2

0 comments on commit 2118ae2

Please sign in to comment.