Solve most code style warnings #149
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/code-style"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Skipped "Member ... does not access instance data and can be marked as static" when future non-static use is expected.
Skipped some switch statements which will be filled in.
@@ -40,3 +37,4 @@
private static Plugin? _instance;
/// <summary>
/// Initializes a new instance of the <see cref="Plugin"/> class.
Missed 'readonly' opportunity
Field '_instance' can be 'readonly'.
Show more details
Static field written by instance method
Write to static field from instance method, property, or constructor.
Show more details