-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add --repo-list to generate-script (#468)
- Loading branch information
1 parent
61b08e2
commit 9a46741
Showing
9 changed files
with
296 additions
and
23 deletions.
There are no files selected for viewing
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
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,22 @@ | ||
[*.cs] | ||
|
||
# CA1707: Identifiers should not contain underscores | ||
dotnet_diagnostic.CA1707.severity = none | ||
|
||
# Naming rules | ||
|
||
dotnet_naming_rule.public_methods_should_be_snake_case.severity = suggestion | ||
dotnet_naming_rule.public_methods_should_be_snake_case.symbols = public_methods | ||
dotnet_naming_rule.public_methods_should_be_snake_case.style = snake_case | ||
|
||
# Symbol specifications | ||
|
||
dotnet_naming_symbols.public_methods.applicable_kinds = method | ||
dotnet_naming_symbols.public_methods.applicable_accessibilities = public | ||
|
||
# Naming styles | ||
|
||
dotnet_naming_style.snake_case.capitalization = pascal_case | ||
dotnet_naming_style.snake_case.word_separator = _ | ||
dotnet_naming_style.snake_case.required_prefix = | ||
dotnet_naming_style.snake_case.required_suffix = |
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
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
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
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
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
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
Oops, something went wrong.