Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Nov 19, 2018
1 parent adea80a commit 650827a
Show file tree
Hide file tree
Showing 86 changed files with 173 additions and 173 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-accessor-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ class A {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-accessor-properties.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-accessor-properties.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-array-from.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const array = Array.from("hello")

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-array-from.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-array-from.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-array-of.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const array = Array.of(1, 2, 3)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-array-of.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-array-of.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-arrow-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ let b = function() { doSomething() }

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-arrow-functions.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-arrow-functions.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-async-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ class A { async f5() {} }

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-async-functions.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-async-functions.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-async-iteration.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ async function wrap() {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-async-iteration.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-async-iteration.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-atomics.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Atomics.add(buffer, 0, 2)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-atomics.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-atomics.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-binary-numeric-literals.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ let a = 0b1010

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-binary-numeric-literals.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-binary-numeric-literals.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-block-scoped-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ if (a) {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-block-scoped-functions.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-block-scoped-functions.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-block-scoped-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ const b = 2

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-block-scoped-variables.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-block-scoped-variables.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ const B = class {}

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-classes.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-classes.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-computed-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ class A {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-computed-properties.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-computed-properties.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-default-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ function f(a = 1) {}

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-default-parameters.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-default-parameters.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-destructuring.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ function f({a, b}, [c, d]) {}

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-destructuring.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-destructuring.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-exponential-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ a **= b

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-exponential-operators.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-exponential-operators.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-for-of-loops.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ for (a of b) {}

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-for-of-loops.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-for-of-loops.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-generators.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ class A {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-generators.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-generators.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-json-superset.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ const u2029 = "
" // a \u2029 is in this string

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-json-superset.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-json-superset.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-keyword-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ a.class = 3

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-keyword-properties.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-keyword-properties.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-malformed-template-literals.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ tag`\unicode`

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-malformed-template-literals.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-malformed-template-literals.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ let map = new Map()

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-map.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-map.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-acosh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.acosh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-acosh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-acosh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-asinh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.asinh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-asinh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-asinh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-atanh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.atanh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-atanh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-atanh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-cbrt.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.cbrt(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-cbrt.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-cbrt.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-clz32.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.clz32(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-clz32.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-clz32.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-cosh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.cosh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-cosh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-cosh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-expm1.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.expm1(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-expm1.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-expm1.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-fround.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.fround(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-fround.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-fround.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-hypot.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.hypot(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-hypot.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-hypot.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-imul.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.imul(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-imul.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-imul.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-log10.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.log10(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-log10.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-log10.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-log1p.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.log1p(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-log1p.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-log1p.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-log2.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.log2(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-log2.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-log2.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-sign.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.sign(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-sign.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-sign.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-sinh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.sinh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-sinh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-sinh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-tanh.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.tanh(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-tanh.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-tanh.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-math-trunc.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const n = Math.trunc(value)

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-math-trunc.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-math-trunc.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ export { x5 }

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-modules.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-modules.js)
- [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)
4 changes: 2 additions & 2 deletions docs/rules/no-new-target.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ class A {

## 📚 References

- [Rule source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/lib/rules/no-new-target.js)
- [Test source](https://github.com/mysticatea/eslint-plugin-es/blob/v1.3.2/tests/lib/rules/no-new-target.js)
- [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)
Loading

0 comments on commit 650827a

Please sign in to comment.