Commit 514c724
committed
docs(linter): Fix the name of the IIFEs config option in eslint/max-lines-per-function (#16554)
This option name was not cased correctly in the docs previously.
```md
## Configuration
This rule accepts a configuration object with the following properties:
### IIFEs
type: `boolean`
default: `false`
The `IIFEs` option controls whether IIFEs are included in the line count.
By default, IIFEs are not considered, but when set to `true`, they will
be included in the line count for the function.
### max
type: `integer`
default: `50`
Maximum number of lines allowed in a function.
### skipBlankLines
type: `boolean`
default: `false`
Skip lines made up purely of whitespace.
### skipComments
type: `boolean`
default: `false`
Skip lines containing just comments.
```1 parent 8eb6aeb commit 514c724
1 file changed
+1
-0
lines changedLines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| 44 | + | |
44 | 45 | | |
45 | 46 | | |
46 | 47 | | |
| |||
0 commit comments