Support ESLint 3.3.1
New rules:
no-template-curly-in-string
: warn if it looks like you're trying to use interpolation in a normal stringno-unsafe-negation
: error if attempting something likeif (!thing instanceof Foo)
which should probably beif (!(thing instanceof Foo))
no-global-assign
: warn if attemptingwindow = {}
or similarno-self-assign
: newprops
flag to error if doinga.b = a.b
or similarfunc-call-spacing
: warn if there is a space between function identifier and invocational parenssort-keys
: off (would alphabetize keys of objects)