diff --git a/docs/rules/no-accessor-properties.md b/docs/rules/no-accessor-properties.md index 2a4d4ad1..9109680a 100644 --- a/docs/rules/no-accessor-properties.md +++ b/docs/rules/no-accessor-properties.md @@ -19,5 +19,5 @@ class A { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-accessor-properties.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-accessor-properties.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-accessor-properties.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-accessor-properties.js) diff --git a/docs/rules/no-array-from.md b/docs/rules/no-array-from.md index 7972c01b..75aa269c 100644 --- a/docs/rules/no-array-from.md +++ b/docs/rules/no-array-from.md @@ -12,5 +12,5 @@ const array = Array.from("hello") ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-array-from.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-array-from.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-array-from.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-array-from.js) diff --git a/docs/rules/no-array-of.md b/docs/rules/no-array-of.md index 902f814c..958131cb 100644 --- a/docs/rules/no-array-of.md +++ b/docs/rules/no-array-of.md @@ -12,5 +12,5 @@ const array = Array.of(1, 2, 3) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-array-of.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-array-of.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-array-of.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-array-of.js) diff --git a/docs/rules/no-arrow-functions.md b/docs/rules/no-arrow-functions.md index 3eaa50b5..75d3a89a 100644 --- a/docs/rules/no-arrow-functions.md +++ b/docs/rules/no-arrow-functions.md @@ -22,5 +22,5 @@ let b = function() { doSomething() } ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-arrow-functions.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-arrow-functions.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-arrow-functions.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-arrow-functions.js) diff --git a/docs/rules/no-async-functions.md b/docs/rules/no-async-functions.md index e8f6030b..c6f62bcc 100644 --- a/docs/rules/no-async-functions.md +++ b/docs/rules/no-async-functions.md @@ -16,5 +16,5 @@ class A { async f5() {} } ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-async-functions.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-async-functions.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-async-functions.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-async-functions.js) diff --git a/docs/rules/no-async-iteration.md b/docs/rules/no-async-iteration.md index cadcffca..a6db50a3 100644 --- a/docs/rules/no-async-iteration.md +++ b/docs/rules/no-async-iteration.md @@ -19,5 +19,5 @@ async function wrap() { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-async-iteration.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-async-iteration.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-async-iteration.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-async-iteration.js) diff --git a/docs/rules/no-atomics.md b/docs/rules/no-atomics.md index 36d7bb9c..92de35a3 100644 --- a/docs/rules/no-atomics.md +++ b/docs/rules/no-atomics.md @@ -12,5 +12,5 @@ Atomics.add(buffer, 0, 2) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-atomics.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-atomics.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-atomics.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-atomics.js) diff --git a/docs/rules/no-binary-numeric-literals.md b/docs/rules/no-binary-numeric-literals.md index 05f9826a..ad5aed6a 100644 --- a/docs/rules/no-binary-numeric-literals.md +++ b/docs/rules/no-binary-numeric-literals.md @@ -12,5 +12,5 @@ let a = 0b1010 ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-binary-numeric-literals.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-binary-numeric-literals.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-binary-numeric-literals.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-binary-numeric-literals.js) diff --git a/docs/rules/no-block-scoped-functions.md b/docs/rules/no-block-scoped-functions.md index 45dcb257..3961cf68 100644 --- a/docs/rules/no-block-scoped-functions.md +++ b/docs/rules/no-block-scoped-functions.md @@ -16,5 +16,5 @@ if (a) { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-block-scoped-functions.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-block-scoped-functions.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-block-scoped-functions.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-block-scoped-functions.js) diff --git a/docs/rules/no-block-scoped-variables.md b/docs/rules/no-block-scoped-variables.md index 9f0d522d..6bf7e778 100644 --- a/docs/rules/no-block-scoped-variables.md +++ b/docs/rules/no-block-scoped-variables.md @@ -13,5 +13,5 @@ const b = 2 ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-block-scoped-variables.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-block-scoped-variables.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-block-scoped-variables.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-block-scoped-variables.js) diff --git a/docs/rules/no-classes.md b/docs/rules/no-classes.md index cf801ad0..3a70aa52 100644 --- a/docs/rules/no-classes.md +++ b/docs/rules/no-classes.md @@ -13,5 +13,5 @@ const B = class {} ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-classes.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-classes.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-classes.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-classes.js) diff --git a/docs/rules/no-computed-properties.md b/docs/rules/no-computed-properties.md index 8216d54b..ec28d404 100644 --- a/docs/rules/no-computed-properties.md +++ b/docs/rules/no-computed-properties.md @@ -20,5 +20,5 @@ class A { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-computed-properties.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-computed-properties.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-computed-properties.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-computed-properties.js) diff --git a/docs/rules/no-default-parameters.md b/docs/rules/no-default-parameters.md index eb780c64..a0a54fa8 100644 --- a/docs/rules/no-default-parameters.md +++ b/docs/rules/no-default-parameters.md @@ -12,5 +12,5 @@ function f(a = 1) {} ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-default-parameters.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-default-parameters.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-default-parameters.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-default-parameters.js) diff --git a/docs/rules/no-destructuring.md b/docs/rules/no-destructuring.md index 2267d653..7cfaedc2 100644 --- a/docs/rules/no-destructuring.md +++ b/docs/rules/no-destructuring.md @@ -17,5 +17,5 @@ function f({a, b}, [c, d]) {} ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-destructuring.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-destructuring.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-destructuring.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-destructuring.js) diff --git a/docs/rules/no-exponential-operators.md b/docs/rules/no-exponential-operators.md index 14fab248..5563ca5c 100644 --- a/docs/rules/no-exponential-operators.md +++ b/docs/rules/no-exponential-operators.md @@ -13,5 +13,5 @@ a **= b ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-exponential-operators.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-exponential-operators.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-exponential-operators.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-exponential-operators.js) diff --git a/docs/rules/no-for-of-loops.md b/docs/rules/no-for-of-loops.md index 4f35425e..d7cc8ca5 100644 --- a/docs/rules/no-for-of-loops.md +++ b/docs/rules/no-for-of-loops.md @@ -14,5 +14,5 @@ for (a of b) {} ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-for-of-loops.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-for-of-loops.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-for-of-loops.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-for-of-loops.js) diff --git a/docs/rules/no-generators.md b/docs/rules/no-generators.md index f3334ede..887da41f 100644 --- a/docs/rules/no-generators.md +++ b/docs/rules/no-generators.md @@ -19,5 +19,5 @@ class A { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-generators.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-generators.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-generators.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-generators.js) diff --git a/docs/rules/no-json-superset.md b/docs/rules/no-json-superset.md index 1672bd7d..066c27e7 100644 --- a/docs/rules/no-json-superset.md +++ b/docs/rules/no-json-superset.md @@ -15,5 +15,5 @@ const u2029 = "
" // a \u2029 is in this string ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-json-superset.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-json-superset.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-json-superset.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-json-superset.js) diff --git a/docs/rules/no-keyword-properties.md b/docs/rules/no-keyword-properties.md index 17c46bf5..5133e646 100644 --- a/docs/rules/no-keyword-properties.md +++ b/docs/rules/no-keyword-properties.md @@ -14,5 +14,5 @@ a.class = 3 ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-keyword-properties.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-keyword-properties.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-keyword-properties.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-keyword-properties.js) diff --git a/docs/rules/no-malformed-template-literals.md b/docs/rules/no-malformed-template-literals.md index 7f090c92..323869ae 100644 --- a/docs/rules/no-malformed-template-literals.md +++ b/docs/rules/no-malformed-template-literals.md @@ -12,5 +12,5 @@ tag`\unicode` ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-malformed-template-literals.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-malformed-template-literals.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-malformed-template-literals.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-malformed-template-literals.js) diff --git a/docs/rules/no-map.md b/docs/rules/no-map.md index 8f74ac3e..be3e18fe 100644 --- a/docs/rules/no-map.md +++ b/docs/rules/no-map.md @@ -12,5 +12,5 @@ let map = new Map() ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-map.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-map.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-map.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-map.js) diff --git a/docs/rules/no-math-acosh.md b/docs/rules/no-math-acosh.md index 9dd8bcac..59631007 100644 --- a/docs/rules/no-math-acosh.md +++ b/docs/rules/no-math-acosh.md @@ -12,5 +12,5 @@ const n = Math.acosh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-acosh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-acosh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-acosh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-acosh.js) diff --git a/docs/rules/no-math-asinh.md b/docs/rules/no-math-asinh.md index ba89ab39..9bce7084 100644 --- a/docs/rules/no-math-asinh.md +++ b/docs/rules/no-math-asinh.md @@ -12,5 +12,5 @@ const n = Math.asinh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-asinh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-asinh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-asinh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-asinh.js) diff --git a/docs/rules/no-math-atanh.md b/docs/rules/no-math-atanh.md index 867e887c..9dc33862 100644 --- a/docs/rules/no-math-atanh.md +++ b/docs/rules/no-math-atanh.md @@ -12,5 +12,5 @@ const n = Math.atanh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-atanh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-atanh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-atanh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-atanh.js) diff --git a/docs/rules/no-math-cbrt.md b/docs/rules/no-math-cbrt.md index 074278f2..9b3d8788 100644 --- a/docs/rules/no-math-cbrt.md +++ b/docs/rules/no-math-cbrt.md @@ -12,5 +12,5 @@ const n = Math.cbrt(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-cbrt.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-cbrt.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-cbrt.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-cbrt.js) diff --git a/docs/rules/no-math-clz32.md b/docs/rules/no-math-clz32.md index ebcb4cfd..a6cb6a08 100644 --- a/docs/rules/no-math-clz32.md +++ b/docs/rules/no-math-clz32.md @@ -12,5 +12,5 @@ const n = Math.clz32(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-clz32.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-clz32.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-clz32.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-clz32.js) diff --git a/docs/rules/no-math-cosh.md b/docs/rules/no-math-cosh.md index 066e700c..c7097c69 100644 --- a/docs/rules/no-math-cosh.md +++ b/docs/rules/no-math-cosh.md @@ -12,5 +12,5 @@ const n = Math.cosh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-cosh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-cosh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-cosh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-cosh.js) diff --git a/docs/rules/no-math-expm1.md b/docs/rules/no-math-expm1.md index 08be3b56..bbc0a985 100644 --- a/docs/rules/no-math-expm1.md +++ b/docs/rules/no-math-expm1.md @@ -12,5 +12,5 @@ const n = Math.expm1(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-expm1.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-expm1.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-expm1.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-expm1.js) diff --git a/docs/rules/no-math-fround.md b/docs/rules/no-math-fround.md index e10e4ab6..0bc64e58 100644 --- a/docs/rules/no-math-fround.md +++ b/docs/rules/no-math-fround.md @@ -12,5 +12,5 @@ const n = Math.fround(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-fround.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-fround.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-fround.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-fround.js) diff --git a/docs/rules/no-math-hypot.md b/docs/rules/no-math-hypot.md index 405d889d..0c35a833 100644 --- a/docs/rules/no-math-hypot.md +++ b/docs/rules/no-math-hypot.md @@ -12,5 +12,5 @@ const n = Math.hypot(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-hypot.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-hypot.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-hypot.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-hypot.js) diff --git a/docs/rules/no-math-imul.md b/docs/rules/no-math-imul.md index 16e767fd..c9319b6c 100644 --- a/docs/rules/no-math-imul.md +++ b/docs/rules/no-math-imul.md @@ -12,5 +12,5 @@ const n = Math.imul(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-imul.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-imul.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-imul.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-imul.js) diff --git a/docs/rules/no-math-log10.md b/docs/rules/no-math-log10.md index 462d6730..d44e87c4 100644 --- a/docs/rules/no-math-log10.md +++ b/docs/rules/no-math-log10.md @@ -12,5 +12,5 @@ const n = Math.log10(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-log10.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-log10.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-log10.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-log10.js) diff --git a/docs/rules/no-math-log1p.md b/docs/rules/no-math-log1p.md index dbddac49..73181716 100644 --- a/docs/rules/no-math-log1p.md +++ b/docs/rules/no-math-log1p.md @@ -12,5 +12,5 @@ const n = Math.log1p(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-log1p.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-log1p.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-log1p.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-log1p.js) diff --git a/docs/rules/no-math-log2.md b/docs/rules/no-math-log2.md index 622ee014..b842d168 100644 --- a/docs/rules/no-math-log2.md +++ b/docs/rules/no-math-log2.md @@ -12,5 +12,5 @@ const n = Math.log2(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-log2.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-log2.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-log2.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-log2.js) diff --git a/docs/rules/no-math-sign.md b/docs/rules/no-math-sign.md index 21140b8d..8e04e6f4 100644 --- a/docs/rules/no-math-sign.md +++ b/docs/rules/no-math-sign.md @@ -12,5 +12,5 @@ const n = Math.sign(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-sign.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-sign.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-sign.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-sign.js) diff --git a/docs/rules/no-math-sinh.md b/docs/rules/no-math-sinh.md index 1900c945..c613e07a 100644 --- a/docs/rules/no-math-sinh.md +++ b/docs/rules/no-math-sinh.md @@ -12,5 +12,5 @@ const n = Math.sinh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-sinh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-sinh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-sinh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-sinh.js) diff --git a/docs/rules/no-math-tanh.md b/docs/rules/no-math-tanh.md index 65c77edc..21aaea8b 100644 --- a/docs/rules/no-math-tanh.md +++ b/docs/rules/no-math-tanh.md @@ -12,5 +12,5 @@ const n = Math.tanh(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-tanh.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-tanh.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-tanh.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-tanh.js) diff --git a/docs/rules/no-math-trunc.md b/docs/rules/no-math-trunc.md index b79557c0..dd65269f 100644 --- a/docs/rules/no-math-trunc.md +++ b/docs/rules/no-math-trunc.md @@ -12,5 +12,5 @@ const n = Math.trunc(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-math-trunc.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-math-trunc.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-math-trunc.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-math-trunc.js) diff --git a/docs/rules/no-modules.md b/docs/rules/no-modules.md index 398af233..3ffdd77b 100644 --- a/docs/rules/no-modules.md +++ b/docs/rules/no-modules.md @@ -17,5 +17,5 @@ export { x5 } ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-modules.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-modules.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-modules.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-modules.js) diff --git a/docs/rules/no-new-target.md b/docs/rules/no-new-target.md index e399c8c5..6312154f 100644 --- a/docs/rules/no-new-target.md +++ b/docs/rules/no-new-target.md @@ -16,5 +16,5 @@ class A { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-new-target.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-new-target.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-new-target.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-new-target.js) diff --git a/docs/rules/no-number-epsilon.md b/docs/rules/no-number-epsilon.md index 51b4d2f0..5c480ae2 100644 --- a/docs/rules/no-number-epsilon.md +++ b/docs/rules/no-number-epsilon.md @@ -12,5 +12,5 @@ const b = Number.EPSILON ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-epsilon.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-epsilon.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-epsilon.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-epsilon.js) diff --git a/docs/rules/no-number-isfinite.md b/docs/rules/no-number-isfinite.md index a3295c0f..050d06ff 100644 --- a/docs/rules/no-number-isfinite.md +++ b/docs/rules/no-number-isfinite.md @@ -12,5 +12,5 @@ const b = Number.isFinite(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-isfinite.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-isfinite.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-isfinite.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-isfinite.js) diff --git a/docs/rules/no-number-isinteger.md b/docs/rules/no-number-isinteger.md index b3041bd8..5c621713 100644 --- a/docs/rules/no-number-isinteger.md +++ b/docs/rules/no-number-isinteger.md @@ -12,5 +12,5 @@ const b = Number.isInteger(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-isinteger.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-isinteger.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-isinteger.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-isinteger.js) diff --git a/docs/rules/no-number-isnan.md b/docs/rules/no-number-isnan.md index cd3e2aa8..c2b4109d 100644 --- a/docs/rules/no-number-isnan.md +++ b/docs/rules/no-number-isnan.md @@ -12,5 +12,5 @@ const b = Number.isNaN(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-isnan.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-isnan.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-isnan.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-isnan.js) diff --git a/docs/rules/no-number-issafeinteger.md b/docs/rules/no-number-issafeinteger.md index 07e68050..7abce4e6 100644 --- a/docs/rules/no-number-issafeinteger.md +++ b/docs/rules/no-number-issafeinteger.md @@ -12,5 +12,5 @@ const b = Number.isSafeInteger(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-issafeinteger.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-issafeinteger.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-issafeinteger.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-issafeinteger.js) diff --git a/docs/rules/no-number-maxsafeinteger.md b/docs/rules/no-number-maxsafeinteger.md index 057494c0..06b8729e 100644 --- a/docs/rules/no-number-maxsafeinteger.md +++ b/docs/rules/no-number-maxsafeinteger.md @@ -12,5 +12,5 @@ const b = Number.MAX_SAFE_INTEGER ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-maxsafeinteger.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-maxsafeinteger.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-maxsafeinteger.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-maxsafeinteger.js) diff --git a/docs/rules/no-number-minsafeinteger.md b/docs/rules/no-number-minsafeinteger.md index d10cc96c..05aad56f 100644 --- a/docs/rules/no-number-minsafeinteger.md +++ b/docs/rules/no-number-minsafeinteger.md @@ -12,5 +12,5 @@ const b = Number.MIN_SAFE_INTEGER ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-minsafeinteger.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-minsafeinteger.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-minsafeinteger.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-minsafeinteger.js) diff --git a/docs/rules/no-number-parsefloat.md b/docs/rules/no-number-parsefloat.md index 311367ad..ed594869 100644 --- a/docs/rules/no-number-parsefloat.md +++ b/docs/rules/no-number-parsefloat.md @@ -12,5 +12,5 @@ const b = Number.parseFloat(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-parsefloat.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-parsefloat.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-parsefloat.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-parsefloat.js) diff --git a/docs/rules/no-number-parseint.md b/docs/rules/no-number-parseint.md index c48e0415..10a0c06b 100644 --- a/docs/rules/no-number-parseint.md +++ b/docs/rules/no-number-parseint.md @@ -12,5 +12,5 @@ const b = Number.parseInt(value) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-number-parseint.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-number-parseint.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-number-parseint.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-number-parseint.js) diff --git a/docs/rules/no-object-assign.md b/docs/rules/no-object-assign.md index bcf85978..3a3a3e49 100644 --- a/docs/rules/no-object-assign.md +++ b/docs/rules/no-object-assign.md @@ -12,5 +12,5 @@ const obj = Object.assign({}, x, y) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-assign.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-assign.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-assign.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-assign.js) diff --git a/docs/rules/no-object-entries.md b/docs/rules/no-object-entries.md index 985cb348..04ecf0d0 100644 --- a/docs/rules/no-object-entries.md +++ b/docs/rules/no-object-entries.md @@ -12,5 +12,5 @@ const entries = Object.entries(obj) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-entries.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-entries.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-entries.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-entries.js) diff --git a/docs/rules/no-object-getownpropertydescriptors.md b/docs/rules/no-object-getownpropertydescriptors.md index ec6d2bb2..cd385b42 100644 --- a/docs/rules/no-object-getownpropertydescriptors.md +++ b/docs/rules/no-object-getownpropertydescriptors.md @@ -12,5 +12,5 @@ const descriptors = Object.getOwnPropertyDescriptors(obj) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-getownpropertydescriptors.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-getownpropertydescriptors.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-getownpropertydescriptors.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-getownpropertydescriptors.js) diff --git a/docs/rules/no-object-getownpropertysymbols.md b/docs/rules/no-object-getownpropertysymbols.md index 31814668..d568e166 100644 --- a/docs/rules/no-object-getownpropertysymbols.md +++ b/docs/rules/no-object-getownpropertysymbols.md @@ -12,5 +12,5 @@ const symbols = Object.getOwnPropertySymbols(obj) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-getownpropertysymbols.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-getownpropertysymbols.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-getownpropertysymbols.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-getownpropertysymbols.js) diff --git a/docs/rules/no-object-is.md b/docs/rules/no-object-is.md index 874a7fc5..a452c4ae 100644 --- a/docs/rules/no-object-is.md +++ b/docs/rules/no-object-is.md @@ -12,5 +12,5 @@ const negZero = Object.is(value, -0) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-is.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-is.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-is.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-is.js) diff --git a/docs/rules/no-object-setprototypeof.md b/docs/rules/no-object-setprototypeof.md index ec9b0622..5d2eddc6 100644 --- a/docs/rules/no-object-setprototypeof.md +++ b/docs/rules/no-object-setprototypeof.md @@ -12,5 +12,5 @@ Object.setPrototypeOf(obj, proto) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-setprototypeof.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-setprototypeof.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-setprototypeof.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-setprototypeof.js) diff --git a/docs/rules/no-object-super-properties.md b/docs/rules/no-object-super-properties.md index 9ad57f77..c93efbab 100644 --- a/docs/rules/no-object-super-properties.md +++ b/docs/rules/no-object-super-properties.md @@ -16,5 +16,5 @@ let a = { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-super-properties.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-super-properties.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-super-properties.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-super-properties.js) diff --git a/docs/rules/no-object-values.md b/docs/rules/no-object-values.md index 9061ff86..f828b415 100644 --- a/docs/rules/no-object-values.md +++ b/docs/rules/no-object-values.md @@ -12,5 +12,5 @@ const values = Object.values(obj) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-object-values.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-object-values.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-object-values.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-object-values.js) diff --git a/docs/rules/no-octal-numeric-literals.md b/docs/rules/no-octal-numeric-literals.md index c28ed59d..bf14e585 100644 --- a/docs/rules/no-octal-numeric-literals.md +++ b/docs/rules/no-octal-numeric-literals.md @@ -12,5 +12,5 @@ let a = 0o123 ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-octal-numeric-literals.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-octal-numeric-literals.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-octal-numeric-literals.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-octal-numeric-literals.js) diff --git a/docs/rules/no-optional-catch-binding.md b/docs/rules/no-optional-catch-binding.md index 2f0e41dc..c8ba913b 100644 --- a/docs/rules/no-optional-catch-binding.md +++ b/docs/rules/no-optional-catch-binding.md @@ -16,5 +16,5 @@ try { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-optional-catch-binding.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-optional-catch-binding.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-optional-catch-binding.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-optional-catch-binding.js) diff --git a/docs/rules/no-promise.md b/docs/rules/no-promise.md index 69696e37..ae029d24 100644 --- a/docs/rules/no-promise.md +++ b/docs/rules/no-promise.md @@ -12,5 +12,5 @@ let p = new Promise() ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-promise.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-promise.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-promise.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-promise.js) diff --git a/docs/rules/no-property-shorthands.md b/docs/rules/no-property-shorthands.md index 5113b595..40e93663 100644 --- a/docs/rules/no-property-shorthands.md +++ b/docs/rules/no-property-shorthands.md @@ -17,5 +17,5 @@ let obj = { ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-property-shorthands.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-property-shorthands.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-property-shorthands.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-property-shorthands.js) diff --git a/docs/rules/no-proxy.md b/docs/rules/no-proxy.md index abc9705f..2cc74b36 100644 --- a/docs/rules/no-proxy.md +++ b/docs/rules/no-proxy.md @@ -12,5 +12,5 @@ let p = new Proxy(obj, hooks) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-proxy.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-proxy.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-proxy.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-proxy.js) diff --git a/docs/rules/no-reflect.md b/docs/rules/no-reflect.md index 0516bcff..8294c41c 100644 --- a/docs/rules/no-reflect.md +++ b/docs/rules/no-reflect.md @@ -12,5 +12,5 @@ let value = Reflect.get(obj, key) ## 📚 References -- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/lib/rules/no-reflect.js) -- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.0/tests/lib/rules/no-reflect.js) +- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/lib/rules/no-reflect.js) +- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.4.1/tests/lib/rules/no-reflect.js) diff --git a/docs/rules/no-regexp-lookbehind-assertions.md b/docs/rules/no-regexp-lookbehind-assertions.md index a965315f..11fed3e9 100644 --- a/docs/rules/no-regexp-lookbehind-assertions.md +++ b/docs/rules/no-regexp-lookbehind-assertions.md @@ -13,5 +13,5 @@ const r2 = /(?=6.5.0"