Skip to content

Commit 323fa06

Browse files
committed
(maint) Add vscode settings file
To add a setting to ensure that UTF-8 with BOM is used for PowerShell files,
1 parent 6293103 commit 323fa06

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ code_drop
55
[Bb]in
66
obj
77
src/packages
8-
/.vscode/
8+
/.vscode/**
9+
!/.vscode/settings.json
910
.vs
1011

1112
*.suo

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"[powershell]": {
3+
"files.encoding": "utf8bom",
4+
}
5+
}

0 commit comments

Comments
 (0)