CleanCode
CleanCode copied to clipboard
ReSharper Plugins
Not sure why, but I recommended the plugin to a colleague and they can no longer find it in the extensions list. Is it still supported?
Uncle Bob makes reference in his Clean Code video series that if Java had nested functions, that he would use them. Instead, he demonstrates grouping them and indenting functions in...
3rd party or builtin interfaces may have methods requiring several arguments (e.g. `Xamarin.Forms.IValueConverter`, which defines `Convert` and `ConvertBack` with four arguments each). In these cases, CleanCode should not warn that...
How easy would it be to add a MoreThanOneAssertCheck class to implement the **One Assert per Test** rule. I'd be keen to get involved and write a MoreThanOneAssertCheck class, but...
The following code gives a "Condition expression too complex" warning: MyFoo.MyEvent += (sender, args) => { bar = true; baz = false; }; There is no warning if the lambda...
I think the inspection for "Too many chained references " should ignore anything in the LINQ namespace.