Would like to use a rule that enforce the usage of tags on each test, see: https://www.npmjs.com/package/@cypress/grep#filter-with-tags Ex. wrong code: ```ts it('works as an array', () => { expect(true).to.be.true }) ``` Fixed code: ```ts it('works as an array', { tags: ['config', 'some-other-tag'] }, () => { expect(true).to.be.true }) ```