{"id":22745649,"url":"https://github.com/hadenlabs/commitlint-config","last_synced_at":"2025-04-12T22:15:32.404Z","repository":{"id":52725522,"uuid":"348567540","full_name":"hadenlabs/commitlint-config","owner":"hadenlabs","description":"Shareable commitlint config used by Hadenlabs 🚀","archived":false,"fork":false,"pushed_at":"2025-01-26T20:22:31.000Z","size":359,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T22:15:26.216Z","etag":null,"topics":["commitlint","commitlint-config","git","hadenlabs","lint","peru"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hadenlabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"docs/code_of_conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["hadenlabs"],"patreon":null,"open_collective":null,"ko_fi":"luismayta","tidelift":null,"community_bridge":null,"liberapay":"luismayta","issuehunt":null,"otechie":null,"custom":["https://www.paypal.me/luismayta","https://www.buymeacoffee.com/luismayta"]}},"created_at":"2021-03-17T03:25:47.000Z","updated_at":"2025-01-26T20:22:35.000Z","dependencies_parsed_at":"2023-01-23T20:46:14.486Z","dependency_job_id":null,"html_url":"https://github.com/hadenlabs/commitlint-config","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hadenlabs%2Fcommitlint-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hadenlabs%2Fcommitlint-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hadenlabs%2Fcommitlint-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hadenlabs%2Fcommitlint-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hadenlabs","download_url":"https://codeload.github.com/hadenlabs/commitlint-config/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637795,"owners_count":21137538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commitlint","commitlint-config","git","hadenlabs","lint","peru"],"created_at":"2024-12-11T02:07:36.996Z","updated_at":"2025-04-12T22:15:32.381Z","avatar_url":"https://github.com/hadenlabs.png","language":"JavaScript","readme":"\u003c!--\n\n\n  ** DO NOT EDIT THIS FILE\n  **\n  ** 1) Make all changes to `provision/generator/README.yaml`\n  ** 2) Run`task readme` to rebuild this file.\n  **\n  ** (We maintain HUNDREDS of open source projects. This is how we maintain our sanity.)\n  **\n\n\n  --\u003e\n\n[![Latest Release](https://img.shields.io/github/release/hadenlabs/commitlint-config)](https://github.com/hadenlabs/commitlint-config/releases) [![Lint](https://img.shields.io/github/workflow/status/hadenlabs/commitlint-config/lint-code)](https://github.com/hadenlabs/commitlint-config/actions?workflow=lint-code) [![CI](https://img.shields.io/github/workflow/status/hadenlabs/commitlint-config/ci)](https://github.com/hadenlabs/commitlint-config/actions?workflow=ci) [![Test](https://img.shields.io/github/workflow/status/hadenlabs/commitlint-config/test)](https://github.com/hadenlabs/commitlint-config/actions?workflow=test) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit\u0026logoColor=white)](https://github.com/pre-commit/pre-commit) [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow)](https://conventionalcommits.org) [![KeepAChangelog](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.0.0-orange)](https://keepachangelog.com)\n\n# commitlint-config\n\ncommitlint-config for project\n\n## Requirements\n\nThis is a list of plugins that need to be installed previously to enjoy all the goodies of this configuration:\n\n- [gomplate](https://github.com/hairyhenderson/gomplate)\n- [python](https://www.python.org)\n- [taskfile](https://github.com/go-task/task)\n\n## Installation\n\n### [yarn](https://yarnpkg.com)\n\nIf you're using [yarn](https://yarnpkg.com)\n\n```shell\n  yarn add --dev husky @commitlint/cli @commitlint/config-conventional @hadenlabs/commitlint-config\n```\n\n### [npm](https://www.npmjs.com)\n\nIf you're using [npm](https://www.npmjs.com)\n\n```shell\n  npm i --save-dev husky @commitlint/cli @commitlint/config-conventional @hadenlabs/commitlint-config\n```\n\n## Usage\n\n# How to use this project\n\nCreate file `.commitlintrc.json` with extending preset and define set of scopes:\n\n```json\n{\n  \"extends\": [\"@hadenlabs/config-conventional\"],\n  \"rules\": {\n    \"type-enum\": [\n      2,\n      \"always\",\n      [\n        // as examples\n        \"app\",\n        \"common\"\n      ]\n    ]\n  }\n}\n```\n\nAdd to `package.json` next section:\n\n```json\n{\n  \"husky\": {\n    \"hooks\": {\n      \"commit-msg\": \"commitlint -E HUSKY_GIT_PARAMS\"\n    }\n  }\n}\n```\n\n## Examples\n\n\u003c!-- Space: Projects --\u003e\n\u003c!-- Parent: CommitlintConfig --\u003e\n\u003c!-- Title: Examples CommitlintConfig --\u003e\n\u003c!-- Label: Examples --\u003e\n\u003c!-- Include: ./../disclaimer.md --\u003e\n\u003c!-- Include: ac:toc --\u003e\n\n### Common\n\n## Help\n\n**Got a question?**\n\nFile a GitHub [issue](https://github.com/hadenlabs/commitlint-config/issues).\n\n## Contributing\n\nSee [Contributing](./docs/contributing.md).\n\n## Module Versioning\n\nThis Module follows the principles of [Semantic Versioning (SemVer)](https://semver.org/).\n\nUsing the given version number of `MAJOR.MINOR.PATCH`, we apply the following constructs:\n\n1. Use the `MAJOR` version for incompatible changes.\n1. Use the `MINOR` version when adding functionality in a backwards compatible manner.\n1. Use the `PATCH` version when introducing backwards compatible bug fixes.\n\n### Backwards compatibility in `0.0.z` and `0.y.z` version\n\n- In the context of initial development, backwards compatibility in versions `0.0.z` is **not guaranteed** when `z` is increased. (Initial development)\n- In the context of pre-release, backwards compatibility in versions `0.y.z` is **not guaranteed** when `y` is increased. (Pre-release)\n\n## Copyright\n\nCopyright © 2018-2025 [Hadenlabs](https://hadenlabs.com)\n\n## Trademarks\n\nAll other trademarks referenced herein are the property of their respective owners.\n\n## License\n\nThe code and styles are licensed under the LGPL-3.0 license [See project license.](LICENSE).\n\n## Don't forget to 🌟 Star 🌟 the repo if you like commitlint-config\n\n[Your feedback is appreciated](https://github.com/hadenlabs/commitlint-config/issues)\n","funding_links":["https://github.com/sponsors/hadenlabs","https://ko-fi.com/luismayta","https://liberapay.com/luismayta","https://www.paypal.me/luismayta","https://www.buymeacoffee.com/luismayta"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhadenlabs%2Fcommitlint-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhadenlabs%2Fcommitlint-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhadenlabs%2Fcommitlint-config/lists"}