jrobind / dev-jot

Note-taking app for online development tutorials
MIT License
54 stars 45 forks source link

Add EditorConfig #69

Closed jrobind closed 3 years ago

jrobind commented 3 years ago

Adding an .editorconfig file will help to maintain consistent coding styles for contributors working on the project across various editors and IDEs.

Here is an example config:

# stop .editorconfig files search on current file.
root = true

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

Please see the docs for more information

RoseKimball commented 3 years ago

Hi, I can work on this issue