-
-
Notifications
You must be signed in to change notification settings - Fork 41
feat: Code formatting cleanup and Postman test reorganization #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,62 @@ | ||
| # EditorConfig for AzureEventGridSimulator | ||
| # https://editorconfig.org | ||
|
|
||
| root = true | ||
|
|
||
| [*] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| end_of_line = lf | ||
| charset = utf-8 | ||
| trim_trailing_whitespace = true | ||
| insert_final_newline = true | ||
|
|
||
| [*.cs] | ||
| # Meziantou.Analyzer rules - downgrade to suggestions for existing code | ||
| # These can be gradually fixed over time | ||
|
|
||
| # MA0002: Use an overload that has a IEqualityComparer<string> or IComparer<string> parameter | ||
| dotnet_diagnostic.MA0002.severity = suggestion | ||
|
|
||
| # MA0004: Use Task.ConfigureAwait(false) | ||
| # Not needed in ASP.NET Core applications | ||
| dotnet_diagnostic.MA0004.severity = none | ||
|
|
||
| # MA0006: Use string.Equals instead of == operator | ||
| dotnet_diagnostic.MA0006.severity = suggestion | ||
|
|
||
| # MA0011: Use overload with IFormatProvider | ||
| dotnet_diagnostic.MA0011.severity = suggestion | ||
|
|
||
| # MA0015: Use overload of ArgumentException with parameter name | ||
| dotnet_diagnostic.MA0015.severity = suggestion | ||
|
|
||
| # MA0016: Prefer using collection abstraction instead of implementation | ||
| dotnet_diagnostic.MA0016.severity = suggestion | ||
|
|
||
| # MA0026: TODO comments | ||
| dotnet_diagnostic.MA0026.severity = suggestion | ||
|
|
||
| # MA0039: Do not write your own certificate validation method | ||
| # This is intentionally disabled because the simulator has a user-opt-in | ||
| # "dangerousAcceptAnyServerCertificateValidator" setting for testing purposes | ||
| dotnet_diagnostic.MA0039.severity = none | ||
|
|
||
| # MA0046: Event delegate parameters | ||
| dotnet_diagnostic.MA0046.severity = suggestion | ||
|
|
||
| # MA0048: File name must match type name | ||
| dotnet_diagnostic.MA0048.severity = suggestion | ||
|
|
||
| # MA0049: Type name should not match containing namespace | ||
| dotnet_diagnostic.MA0049.severity = suggestion | ||
|
|
||
| # MA0051: Method is too long | ||
| dotnet_diagnostic.MA0051.severity = suggestion | ||
|
|
||
| # MA0055: Do not use finalizer | ||
| # Finalizers are used in test fixtures for cleanup, which is acceptable | ||
| dotnet_diagnostic.MA0055.severity = suggestion | ||
|
|
||
| # MA0158: Use System.Threading.Lock | ||
| dotnet_diagnostic.MA0158.severity = suggestion |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.