These are a list of analyzers i want to make in C#
- error on using
Convert.ToXxx
- code fix will change to a casting operator or
Xxx.TryParse
- code fix will change to a casting operator or
- warning on hard coding path seperators
- code fix will change to
Path.DirectorySeparatorChar
orPath.Combine(...)
- code fix will change to
- warning on identifier conflicts
- locals conflicting with fields/properties
- lambda parameters conflicting with locals/fields/properties
- code fix will add numbers onto end of identifiers to make sure they are unique