mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
Feature/add editorconfig (#36)
* Add editorconfig In order to avoid EOL, indents and all that stuff across IDE's, having an editorconfig solves it * Fix some changes
This commit is contained in:
parent
e595bbea5d
commit
99db1bda78
1 changed files with 13 additions and 0 deletions
13
.editorconfig
Normal file
13
.editorconfig
Normal file
|
@ -0,0 +1,13 @@
|
|||
#root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
max_line_length = 100
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
Loading…
Reference in a new issue