Mike Pelley

- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 2
-
Mike Pelley commented, -
Mike Pelley created a post, AnsweredIf else and cleanup code
I'd like to configure cleanup code to prefer the following layout: if (a = b){ // do something}else if (a < TOOBIG){ // do something else}else{ // third thing} Basically I'd like to enforc... -
-
Mike Pelley created a post, AnsweredECMAScript 2015 Implicitly declared variable
I've set my language to ECMAScript 2015 (which eliminated a lot of false warnings), but ReSharper still says "implicitly declared variable" when I create objects from the new standard (e.g. new Set...