Given you only (dis)allow specefic tags:
{
"rules": {
"playwright/valid-test-tags": ["error", { "allowedTags": ["@e2e", "@regression"] }]
}
}
And have the following test:
import { test } from '@playwright/test';
test('test full report @slow', async ({ page }) => {
// ...
});
Then no eslint error is thrown.
While expected @slow is checked for validity