Skip to content

Commit d16dff2

Browse files
committed
chore: fix docs
1 parent ddccd12 commit d16dff2

20 files changed

+299
-27
lines changed

docs/rules/no-iterator-prototype-drop.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-drop: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-every.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-every: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-filter.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-filter: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-find.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-find: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-flatmap.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-flatmap: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-foreach.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-foreach: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-map.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-map: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-reduce.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-reduce: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-some.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-some: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

docs/rules/no-iterator-prototype-take.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ function* naturals() {
2929

3030
</eslint-playground>
3131

32+
## 🔧 Options
33+
34+
This rule has an option.
35+
36+
```yaml
37+
rules:
38+
es-x/no-iterator-prototype-take: [error, { aggressive: false }]
39+
```
40+
41+
### aggressive: boolean
42+
43+
Configure the aggressive mode for only this rule.
44+
This is prior to the `settings['es-x'].aggressive` setting.
45+
3246
## 🚀 Version
3347

3448
This rule was introduced in v8.1.0.

0 commit comments

Comments
 (0)