Skip to content

Commit cc3ddf3

Browse files
committed
Add .editorconfig, .gitignore, and .vscode/extensions.json files
1 parent 6fd1228 commit cc3ddf3

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs.
2+
# Atom: Please assure your Atom's config setting Tab Type is set to auto, otherwise Atom-EditorConfig may not work as expected. Also disable whitespace package.
3+
# http://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
indent_style = tab
10+
indent_size = 4
11+
trim_trailing_whitespace = true
12+
end_of_line = lf
13+
insert_final_newline = true
14+
15+
# MARKDOWN Files
16+
[*.{md}]
17+
indent_style = space
18+
indent_size = 4

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/settings.json

.vscode/extensions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"editorconfig.editorconfig",
4+
"yzhang.markdown-all-in-one",
5+
"DavidAnson.vscode-markdownlint",
6+
"esbenp.prettier-vscode"
7+
]
8+
}

0 commit comments

Comments
 (0)