Enforce using each rather than manual loops (vitest/prefer-each) ⚠️ This rule warns in the 🌐 all config. // bad for (const item of items) { describe(item, () => { expect(item).toBe('foo') }) } // good describe.each(items)('item', (item) => { expect(item).toBe('foo') })