You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(linter): Add configuration option docs for jest/no-large-snapshots rule. (#15079)
Part of #14743.
Generated docs:
```md
## Configuration
This rule accepts a configuration object with the following properties:
### allowedSnapshots
type: `Record<string, array>`
default: `{}`
A map of snapshot file paths to arrays of snapshot names that are allowed to exceed the size limit.
Snapshot names can be specified as regular expressions.
### inlineMaxSize
type: `integer`
default: `50`
Maximum number of lines allowed for inline snapshots.
### maxSize
type: `integer`
default: `50`
Maximum number of lines allowed for external snapshot files.
```
0 commit comments