unicorn/prefer-set-size Correctness 
What it does 
Prefer Set#size over Set#length when the Set is converted to an array.
Why is this bad? 
Using Set#size is more readable and performant.
Examples 
Examples of incorrect code for this rule:
javascript
const length = [...new Set([1, 2, 3])].length;Examples of correct code for this rule:
javascript
const size = new Set([1, 2, 3]).size;How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny unicorn/prefer-set-sizejson
{
  "rules": {
    "unicorn/prefer-set-size": "error"
  }
}