-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from BradKnowles/feature/workshop-dotnet-inte…
…gration-tests feat(serverless-testing-workshop): ✨ Add C# Integration Tests
- Loading branch information
Showing
17 changed files
with
2,085 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
workshops/serverless-testing-workshop/tests/integration/dotnet/.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# https://editorconfig.org/ | ||
|
||
# What is EditorConfig? | ||
|
||
# EditorConfig helps maintain consistent coding styles for multiple developers | ||
# working on the same project across various editors and IDEs. The EditorConfig | ||
# project consists of a file format for defining coding styles and a collection | ||
# of text editor plugins that enable editors to read the file format and adhere | ||
# to defined styles. EditorConfig files are easily readable and they work nicely | ||
# with version control systems. | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = crlf | ||
|
||
indent_style = tab | ||
indent_size = 2 | ||
|
||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.cs] | ||
indent_size = 4 |
Oops, something went wrong.