-
Notifications
You must be signed in to change notification settings - Fork 7
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
OSOE-760: Disable SA1518 since it's already covered by S113 #96
Conversation
0liver
commented
Dec 30, 2023
- warns on lacking newline at end of file
- warns on lacking newline at end of file
Thanks for the contrib! Don't worry about the missing parent PR failing check, I'll add one. Any particular reason why you didn't choose to keep the StyleCop rule instead? |
Thanks! I had already forgotten that a parent PR is needed 😉 As for the choice of rule to keep - I think I liked the warning message better from |
No, it's OK then. The StyleCop rule also requires some configuration so that makes things easier. Interestingly enough, we didn't actually add any config but it was still working, perhaps by some coincidence. |
Thank you! |
It's been a pleasure! 😊 |
I'd need to dig into that, but the SDK one is usually a safer bet. |
To keep, I suppose? I just discovered why picking S113 over SA1518 might have been the wrong choice - there's no quick-fix action available for the former, but there is for the latter, which is greatly appreciated when you want to clean up your solution one warning at a time 😉 Do you fancy another PR to invert the exclusion? |
Yes, and sure, thanks. |
Here's the follow-up PR: #97. |