husky-check-email

check email for domain before git commit

Usage no npm install needed!

<script type="module">
  import huskyCheckEmail from 'https://cdn.skypack.dev/husky-check-email';
</script>

README

husky-check-email

npm license Build Status dependencies Status devDependencies Status Coverage Status Known Vulnerabilities

Add this module to only allow git commits with emails from certain domain.

Install

npm i husky-check-email

Usage (package.json)

If you want to validate email against one domain:

{
  "husky": {
    "hooks": {
      "pre-commit": "husky-check-email @mydomain.com"
    }
  }
}

If you want to validate email against several domains:

{
  "husky": {
    "hooks": {
      "pre-commit": "husky-check-email @mydomain.com,@mail.ru"
    }
  }
}

See also