Try our Chrome extension
Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!Changedetection.io needs your support!
You can help us by supporting changedetection.io on these platforms;
- Rate us at AlternativeTo.net
- Star us on GitHub
- Follow us at Twitter/X
- G2 Software reviews
- Check us out on LinkedIn
- And tell your friends and colleagues :)
The more popular changedetection.io is, the more time we can dedicate to adding amazing features!
Many thanks :)
changedetection.io team
Henüz değil saniye önce
False
Henüz değil saniye önce
Tetiklenen metin Yoksayılan metin Engellenen metin
2 saat önce
Skip to content
Navigation Menu
Sign in Appearance settings
* Platform
+ AI CODE CREATION
o GitHub Copilot Write better code with AI
o GitHub Copilot app Direct agents from issue to merge
o MCP Registry Integrate external tools
+ DEVELOPER WORKFLOWS
o Actions Automate any workflow
o Codespaces Instant dev environments
o Issues Plan and track work
o Code Review Manage code changes
o Code Quality Enforce quality at merge
+ APPLICATION SECURITY
o GitHub Advanced Security Find and fix vulnerabilities
o Code security Secure your code as you build
o Secret protection Stop leaks before they start
+ EXPLORE
o Why GitHub
o Documentation
o Blog
o Changelog
o Marketplace
View all features
* Solutions
+ BY COMPANY SIZE
o Enterprises
o Small and medium teams
o Startups
o Nonprofits
+ BY USE CASE
o App Modernization
o DevSecOps
o DevOps
o CI/CD
o View all use cases
+ BY INDUSTRY
o Healthcare
o Financial services
o Manufacturing
o Government
o View all industries
View all solutions
* Resources
+ EXPLORE BY TOPIC
o AI
o Software Development
o DevOps
o Security
o View all topics
+ EXPLORE BY TYPE
o Customer stories
o Events & webinars
o Ebooks & reports
o Business insights
o GitHub Skills
+ SUPPORT & SERVICES
o Documentation
o Customer support
o Community forum
o Trust center
o Partners
View all resources
* Open Source
+ COMMUNITY
o GitHub Sponsors Fund open source developers
+ PROGRAMS
o Security Lab
o Maintainer Community
o Accelerator
o GitHub Stars
o Archive Program
+ REPOSITORIES
o Topics
o Trending
o Collections
* Enterprise
+ ENTERPRISE SOLUTIONS
o Enterprise platform AI-powered developer platform
+ AVAILABLE ADD-ONS
o GitHub Advanced Security Enterprise-grade security features
o Copilot for Business Enterprise-grade AI features
o Premium Support Enterprise-grade 24/7 support
* Pricing
Type / to search
Sign in
Sign up Appearance settings
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Uh oh!
There was an error while loading. Please reload this page.
conventional-changelog / commitlint Public
* Notifications You must be signed in to change notification settings
* Fork 968
* Star 18.7k
* Code
* Issues 81
* Pull requests 8
* Actions
* Security and quality 0
* Insights
Additional navigation options
* Code
* Issues
* Pull requests
* Actions
* Security and quality
* Insights
master
Branches Tags
Go to file
Code
Open more actions menu
Folders and files
Name Name Last commit message Last commit date
Latest commit
History
3,436 Commits
3,436 Commits
.devcontainer .devcontainer
.github .github
.husky .husky
.vscode .vscode
@alias @alias
@commitlint @commitlint
@packages @packages
docs docs
scripts scripts
skills/ committing-with-commitlint skills/ committing-with-commitlint
.editorconfig .editorconfig
.gitignore .gitignore
.mise.toml .mise.toml
.npmrc .npmrc
.nxignore .nxignore
.oxfmtignore .oxfmtignore
.oxlintrc.json .oxlintrc.json
CHANGELOG.md CHANGELOG.md
Dockerfile.ci Dockerfile.ci
Dockerfile.dev Dockerfile.dev
README.md README.md
compose.yaml compose.yaml
lerna.json lerna.json
license.md license.md
package.json package.json
pnpm-lock.yaml pnpm-lock.yaml
pnpm-workspace.yaml pnpm-workspace.yaml
tsconfig.json tsconfig.json
tsconfig.shared.json tsconfig.shared.json
vitest.config.ts vitest.config.ts
View all files
Repository files navigation
*
* README
* Code of conduct
* Contributing
* MIT license
More items
Get Started | Website
Lint commit messages
Demo generated with svg-term-cli
cat docs/assets/commitlint.json | svg-term --out docs/public/assets/commitlint.svg --frame --profile=Seti --height=20 --width=80
* 🚓 Be a good commitizen
* 📦 Share configuration via npm
* 🤖 Tap into conventional-changelog
Contents
* Get Started | Website
+ Contents
+ What is commitlint
o Benefits of using commitlint
+ Getting started
+ CLI
+ Config
+ Shared configuration
+ Documentation
+ API
+ Tools
+ Roadmap
+ Version Support and Releases
o Releases
+ Related projects
+ License
+ Development
o Install and run
What is commitlint
commitlint checks if your commit messages meet the conventional commit format.
In general the pattern mostly looks like this:
type(scope?): subject # scope is optional; multiple scopes are supported (current delimiter options: "/", "\" and ",")
Real world examples can look like this:
chore: run tests on travis ci
fix(server): send cors headers
feat(blog): add comment section
Common types according to commitlint-config-conventional (based on the Angular convention) can be:
* build
* chore
* ci
* docs
* feat
* fix
* perf
* refactor
* revert
* style
* test
These can be modified by your own configuration.
Benefits of using commitlint
* Why Use Conventional Commits?
* "The perks of committing with conventions" (Talk slides)
Getting started
* Local setup - Lint messages on commit with husky
* CI setup - Lint messages during CI builds
CLI
* Primary way to interact with commitlint.
* npm install --save-dev @commitlint/cli
* Packages: cli
Config
* Configuration is picked up from:
+ .commitlintrc
+ .commitlintrc.json
+ .commitlintrc.yaml
+ .commitlintrc.yml
+ .commitlintrc.js
+ .commitlintrc.cjs
+ .commitlintrc.mjs
+ .commitlintrc.ts
+ .commitlintrc.cts
+ .commitlintrc.mts
+ commitlint.config.js
+ commitlint.config.cjs
+ commitlint.config.mjs
+ commitlint.config.ts
+ commitlint.config.cts
+ commitlint.config.mts
+ commitlint field in package.json
+ commitlint field in package.yaml
* Packages: cli, core
* See Rules for a complete list of possible rules
* An example configuration can be found at @commitlint/config-conventional
Important note about Node 24+
Node v24 changes the way that modules are loaded, and this includes the commitlint config file. If your project does not contain a package.json, commitlint may fail to load the config, resulting in a Please add rules to your commitlint.config.js error message. This can be fixed by doing either of the following:
* Add a package.json file, declaring your project as an ES6 module. This can be done easily by running npm init es6.
* Rename the config file from commitlint.config.js to commitlint.config.mjs.
Shared configuration
A number of shared configurations are available to install and use with commitlint:
* @commitlint/config-angular
* @commitlint/config-conventional
* @commitlint/config-lerna-scopes
* @commitlint/config-nx-scopes
* @commitlint/config-patternplate
* @commitlint/config-workspace-scopes
* conventional-changelog-lint-config-atom
* conventional-changelog-lint-config-canonical
⚠️ If you want to publish your own shareable config then make sure it has a name aligning with the pattern commitlint-config-emoji-log or commitlint-config-your-config-name — then in extend all you have to write is emoji-log or your-config-name.
Documentation
Check the main website.
API
* Alternative, programmatic way to interact with commitlint
* Packages:
+ format - Format commitlint reports
+ lint - Lint a string against commitlint rules
+ load - Load shared commitlint configuration
+ read - Read commit messages from a specified range or last edit
* See API for a complete list of methods and examples
Tools
* commitizen adapter
* prompt
Roadmap
commitlint is considered stable and is used in various projects as a development tool.
Ideas: conventional-changelog/commitlint#94
Version Support and Releases
* Node.js LTS >= 22.12.0
* git >= 2.13.2
Releases
We're not a sponsored OSS project. Therefore we can't promise that we will release patch versions for older releases in a timely manner.
If you are stuck on an older version and need a security patch we're happy if you can provide a PR.
Related projects
* conventional-changelog Generate a changelog from conventional commit history
* commitizen Simple commit conventions for internet citizens
* create-semantic-module CLI for quickly integrating commitizen and commitlint in new or existing projects
License
Copyright by @marionebl. All commitlint packages are released under the MIT license.
Development
commitlint is developed in a mono repository.
Install and run
git clone git@github.com:conventional-changelog/commitlint.git
cd commitlint
pnpm install
pnpm build # run build tasks
pnpm start # rebuild on change (tsc -b --watch)
node @commitlint/cli/cli.js # run CLI
For more information on how to contribute please take a look at our contribution guide.
About
📓 Lint commit messages
commitlint.js.org
Topics
commitconventionsgitlint
Resources
Readme
MIT license
Code of conduct
Code of conduct
Contributing
Contributing
Activity
Custom properties
Stars
18.7k stars
Watchers
62 watching
Forks
968 forks
Report repository
Releases
Packages
Used by
Contributors
Languages
Footer
© 2026 GitHub, Inc.
Footer navigation
* Terms
* Privacy
* Security
* Status
* Community
* Docs
* Contact
* Manage cookies
* Do not share my personal information
You can’t perform that action at this time.
Şimdilik, Farklar grafiksel olarak değil metin üzerinde gerçekleştirilir, yalnızca en son ekran görüntüsü mevcuttur.
Ekran görüntüsü, ekran görüntülerini destekleyen bir İçerik Getiricisi (Sockpuppetbrowser, selenium vb.) gerektirir.