Skip to content

Commit

Permalink
Add .editorconfig, .gitignore, and .vscode/extensions.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
MicLieg committed Apr 24, 2024
1 parent 1084bf9 commit 21fcdcf
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs.
# 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.
# http://editorconfig.org/

root = true

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

# MARKDOWN Files
[*.{md}]
indent_style = space
indent_size = 4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/settings.json
9 changes: 9 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"MD013": false,
"MD030": {
"ul_single": 3,
"ol_single": 1,
"ul_multi": 3,
"ol_multi": 1
}
}
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"editorconfig.editorconfig",
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode"
]
}

0 comments on commit 21fcdcf

Please sign in to comment.