Skip to content

Commit 693b090

Browse files
committed
Add .editorconfig, .gitignore, and .vscode/extensions.json files
1 parent 5836c3d commit 693b090

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-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

.markdownlint.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"MD013": false,
3+
"MD030": {
4+
"ul_single": 3,
5+
"ol_single": 1,
6+
"ul_multi": 3,
7+
"ol_multi": 1
8+
}
9+
}

.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)