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
Add a minimumItems option so only arrays from a certain known size will be linted (default 0).
The rule can sometimes be too strict, using sets over arrays is usually more performant the more elements it has, and it's negligible in small numbers and readability is preferred.
Description
Add a
minimumItems
option so only arrays from a certain known size will be linted (default 0).The rule can sometimes be too strict, using sets over arrays is usually more performant the more elements it has, and it's negligible in small numbers and readability is preferred.
Fail
minimumItems: 5
Pass
minimumItems: 5
The text was updated successfully, but these errors were encountered: