Skip to content

Commit

Permalink
Contributors should use common settings in VSCode
Browse files Browse the repository at this point in the history
Modern IDEs use different settings. In this project,
all the maintainers are using heavily VSCode.
As a result it makes sense to use the same,
configurations when it comes on doing many things
related to syntax.

User should install the following extention:

  - https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig

This PR Fixes: #18
  • Loading branch information
cerebrux committed Sep 24, 2020
1 parent 9afee46 commit b0f8d8b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
root = true

[*]
end_of_line = lf
indent_sie = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8

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

0 comments on commit b0f8d8b

Please sign in to comment.