Skip to content

Commit

Permalink
Update ruleset add funding
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Oct 7, 2019
1 parent 9a8c918 commit 71e71c9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dotnet_naming_rule.parameters_should_be_camel_case.style = camel_case
dotnet_naming_rule.parameters_should_be_camel_case.symbols = parameters

dotnet_naming_rule.private_and_internal_static_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.private_and_internal_static_fields_should_be_camel_case.style = pascal_case
dotnet_naming_rule.private_and_internal_static_fields_should_be_camel_case.style = camel_case
dotnet_naming_rule.private_and_internal_static_fields_should_be_camel_case.symbols = private_and_internal_static_fields

dotnet_naming_rule.private_and_internal_fields_should_be_camel_case.severity = suggestion
Expand All @@ -79,6 +79,7 @@ dotnet_naming_rule.private_and_internal_fields_should_be_camel_case.symbols = pr
dotnet_naming_rule.public_and_protected_declarations_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.public_and_protected_declarations_should_be_pascal_case.style = pascal_case
dotnet_naming_rule.public_and_protected_declarations_should_be_pascal_case.symbols = public_and_protected_declarations
dotnet_naming_symbols.public_and_protected_declarations.applicable_kinds = method, field, event, property

dotnet_naming_rule.static_readonly_declarations_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.static_readonly_declarations_should_be_pascal_case.style = pascal_case
Expand Down
3 changes: 3 additions & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: JimBobSquarePants
13 changes: 10 additions & 3 deletions ImageProcessor.ruleset
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@
<!--https://github.com/dotnet/roslyn/issues/18117-->
<Rule Id="AD0001" Action="None" />

<!--Using directive should appear within a namespace declaration-->
<Rule Id="SA1200" Action="None" />

<!--Call 'ConfigureAwait(false)'-->
<Rule Id="RCS1090" Action="None" />

<!--A C# code file contains more than one unique type.-->
<Rule Id="SA1402" Action="None" />

<!--The last statement in a multi-line C# initializer or list is missing a trailing comma.-->
<Rule Id="SA1413" Action="None" />

<!--A C# code file is missing a standard file header.-->
<Rule Id="SA1633" Action="Warning" />

<!--A C# code file contains more than one unique type.-->
<Rule Id="SA1402" Action="None" />

</Rules>
</RuleSet>

0 comments on commit 71e71c9

Please sign in to comment.