Skip to content

Commit a06a9bb

Browse files
author
Kapil Borle
committed
Add codeformatting settings file
1 parent daac5f6 commit a06a9bb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Engine/Settings/CodeFormatting.psd1

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@{
2+
IncludeRules = @(
3+
'PSPlaceOpenBrace',
4+
'PSPlaceOpenBrace',
5+
'PSUseConsistentIndentation'
6+
)
7+
8+
Rules = @{
9+
PSPlaceOpenBrace = @{
10+
Enable = $true
11+
OnSameLine = $true
12+
NewLineAfter = $true
13+
}
14+
15+
PSPlaceCloseBrace = @{
16+
Enable = $true
17+
}
18+
19+
PSUseConsistentIndentation = @{
20+
Enable = $true
21+
IndentationSize = 4
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)