Skip to content

Commit 2862cd2

Browse files
authored
Merge pull request #358 from BradKnowles/feature/workshop-dotnet-integration-tests
feat(serverless-testing-workshop): ✨ Add C# Integration Tests
2 parents ee93ca7 + 9fad1c1 commit 2862cd2

17 files changed

+2085
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# https://editorconfig.org/
2+
3+
# What is EditorConfig?
4+
5+
# EditorConfig helps maintain consistent coding styles for multiple developers
6+
# working on the same project across various editors and IDEs. The EditorConfig
7+
# project consists of a file format for defining coding styles and a collection
8+
# of text editor plugins that enable editors to read the file format and adhere
9+
# to defined styles. EditorConfig files are easily readable and they work nicely
10+
# with version control systems.
11+
12+
# top-most EditorConfig file
13+
root = true
14+
15+
[*]
16+
charset = utf-8
17+
end_of_line = crlf
18+
19+
indent_style = tab
20+
indent_size = 2
21+
22+
insert_final_newline = true
23+
trim_trailing_whitespace = true
24+
25+
[*.cs]
26+
indent_size = 4

0 commit comments

Comments
 (0)