Make omitting access modifiers (SA1400) an error

This commit is contained in:
YoshiRulz 2020-10-01 22:41:08 +10:00
parent f22f5b732b
commit 251d3f91df
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 0 deletions

View File

@ -448,6 +448,9 @@
<!-- Statement should not use unnecessary parenthesis -->
<Rule Id="SA1119" Action="Hidden" />
<!-- Access modifier should be declared -->
<Rule Id="SA1400" Action="Error" />
<!-- Fields should be private -->
<Rule Id="SA1401" Action="Hidden" />