v1.2.0
New configs
v1.2.0 added some configs to enable rules in a lump.
plugin:es/no-es2018plugin:es/no-es2017plugin:es/no-es2016plugin:es/no-es2015plugin:es/no-es5
New rules
v1.2.0 added many rules to catch newly static properties and methods.
- ES2017
- es/no-atomics ...
Atomicsclass. - es/no-object-values ...
Object.values()method. - es/no-object-entries ...
Object.entries()method. - es/no-object-getownpropertydescriptors ...
Object.getOwnPropertyDescriptors()method. - es/no-shared-array-buffer ...
SharedArrayBufferclass.
- es/no-atomics ...
- ES2015
- es/no-array-from ...
Array.from()method. - es/no-array-of ...
Array.of()method. - es/no-map ...
Mapclass. - es/no-math-acosh ...
Math.acosh()method. - es/no-math-asinh ...
Math.asinh()method. - es/no-math-atanh ...
Math.atanh()method. - es/no-math-cbrt ...
Math.cbrt()method. - es/no-math-clz32 ...
Math.clz32()method. - es/no-math-cosh ...
Math.cosh()method. - es/no-math-expm1 ...
Math.expm1()method. - es/no-math-fround ...
Math.fround()method. - es/no-math-hypot ...
Math.hypot()method. - es/no-math-imul ...
Math.imul()method. - es/no-math-log10 ...
Math.log10()method. - es/no-math-log1p ...
Math.log1p()method. - es/no-math-log2 ...
Math.log2()method. - es/no-math-sign ...
Math.sign()method. - es/no-math-sinh ...
Math.sinh()method. - es/no-math-tanh ...
Math.tanh()method. - es/no-math-trunc ...
Math.trunc()method. - es/no-number-epsilon ...
Number.EPSILONproperty. - es/no-number-isfinite ...
Number.isFinite()method. - es/no-number-isinteger ...
Number.isInteger()method. - es/no-number-isnan ...
Number.isNaN()method. - es/no-number-issafeinteger ...
Number.isSafeInteger()method. - es/no-number-maxsafeinteger ...
Number.MAX_SAFE_INTEGERproperty. - es/no-number-minsafeinteger ...
Number.MIN_SAFE_INTEGERproperty. - es/no-number-parsefloat ...
Number.parseFloat()method. - es/no-number-parseint ...
Number.parseInt()method. - es/no-object-assign ...
Object.assign()method. - es/no-object-getownpropertysymbols ...
Object.getOwnPropertySymbols()method. - es/no-object-is ...
Object.is()method. - es/no-object-setprototypeof ...
Object.setPrototypeOf()method. - es/no-promise ...
Promiseclass. - es/no-proxy ...
Proxyclass. - es/no-reflect ...
Reflectclass. - es/no-set ...
Setclass. - es/no-string-fromcodepoint ...
String.fromCodePoint()method. - es/no-string-raw ...
String.raw()method. - es/no-symbol ...
Symbolclass. - es/no-typed-arrays ... Typed array classes.
- es/no-weak-map ...
WeakMapclass. - es/no-weak-set ...
WeakSetclass.
- es/no-array-from ...
New fixable rules
v1.2.0 made some rules fixable. Thank you very much, @ota-meshi!