npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tag-linter-playwright

v1.0.5

Published

Validador de tags para testes Playwright

Readme

tag-linter-playwright

npm version npm downloads Playwright TypeScript Node.js License

Validador simples e robusto de tags para testes Playwright, baseado na mesma abordagem do ESLint, usando @typescript-eslint/parser para analisar seu código TypeScript ou JavaScript. Compatível com Playwright, TypeScript e Node.js.

Instalação

Dependência local (recomendado):

npm install --save-dev tag-linter-playwright

Instalação Global

npm install -g tag-linter-playwright

Como utilizar

  1. Via script no package.json

Adicione um script:

"scripts": {
  "lint:tags": "playwright-tag-linter"
}

E rode:

npm run lint:tags

Por padrão, o linter procura arquivos de teste que sigam o padrão:

**/*.{spec,test}.{ts,js}

Se quiser customizar, use a flag --pattern:

npm run lint:tags --pattern "tests/**/*.spec.ts"
  1. Via CLI
npx playwright-tag-linter --pattern "tests/**/*.spec.ts"

.tagslintrc.json

Você pode criar um arquivo .tagslintrc.json na raiz do projeto para configurar as regras do validador de tags. O linter usará essas configurações para validar seus testes e exibirá os respectivos avisos e erros conforme as regras definidas.

Exemplo:

{
  "testPattern": "**/*.{spec,test}.{ts,js}",
  "exclude": ["node_modules/**", "dist/**", "coverage/**", ".git/**"],
  "requiredTags": ["@smoke", "@regression"],
  "tagPattern": "^@[a-zA-Z0-9-_]+$",
  "rules": {
    "require-tags": "error",
    "valid-tag-format": "warn",
    "required-tags-present": "warn"
  },
  "tagCategories": {
    "priority": ["@critical", "@high", "@medium", "@low", "@lowest"],
    "type": ["@smoke", "@regression", "@functional", "@api", "@visual"],
    "environment": ["@dev", "@staging", "@uat"]
  }
}

CLI

Opções da CLI

| Opção | Descrição | Exemplo | |-------------------|----------------------------------------------|------------------------------| | --pattern | Padrão glob para arquivos de teste | --pattern "tests/**/*.spec.ts" | | --required | Tags obrigatórias (separadas por vírgula) | --required "@smoke,@critical" | | --verbose | Exibe saída detalhada | --verbose | | --config | Caminho para um arquivo .tagslintrc.json personalizado | --config ./config/tagslintrc.json |

Saída

$ npx playwright-tag-linter --required "@smoke,@critical" --verbose

✔ tests/login.spec.ts: Todas as tags obrigatórias estão presentes
⚠ tests/payment.spec.ts: Tag obrigatória @critical ausente
✖ tests/cart.spec.ts: Formato de tag inválido "@SmokeTest"

🎥 Demo

Playwright Tag Linter Demo


Contribuição

Pull requests são bem-vindos! Abra uma issue para discutir melhorias ou bugs.

📜 Licença

Este projeto está licenciado sob a Licença MIT.


Happy Testing 🎭

Feito com 💛 por Jessica Silva.