Skip to content

Commit b465f3e

Browse files
authored
Add .gitattributes, .editorconfig and extensions.json (#667)
Address #665
1 parent 7862c88 commit b465f3e

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
insert_final_newline = true
9+
10+
[*.{cs}]
11+
indent_size = 4
12+
trim_trailing_whitespace = true
13+
14+
[*.{json}]
15+
indent_size = 2
16+
trim_trailing_whitespace = true
17+
18+
[*.{ps1,psm1,psd1}]
19+
indent_size = 4
20+
trim_trailing_whitespace = true
21+
22+
[*.{ps1xml,props,xml,yaml}]
23+
indent_size = 2

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CHANGELOG.md merge=union
2+
* text=auto
3+
*.png binary

.vscode/extensions.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"ms-vscode.csharp",
6+
"ms-vscode.PowerShell",
7+
"EditorConfig.EditorConfig",
8+
"DavidAnson.vscode-markdownlint"
9+
]
10+
}

0 commit comments

Comments
 (0)