{"id":18023832,"url":"https://github.com/bendera/vscode-commit-message-formatter","last_synced_at":"2026-04-13T00:43:42.602Z","repository":{"id":159443658,"uuid":"634069907","full_name":"bendera/vscode-commit-message-formatter","owner":"bendera","description":"Break long lines in the commit messages.","archived":false,"fork":false,"pushed_at":"2023-07-22T13:49:39.000Z","size":310,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-18T13:53:02.540Z","etag":null,"topics":["git","git-commit","prettier","visual-studio-code","visual-studio-code-extension","vscode","vscode-extension","vscode-formatter"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=adam-bender.commit-message-formatter","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bendera.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-29T00:45:08.000Z","updated_at":"2025-03-30T00:50:47.000Z","dependencies_parsed_at":"2023-09-14T01:46:26.719Z","dependency_job_id":null,"html_url":"https://github.com/bendera/vscode-commit-message-formatter","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/bendera/vscode-commit-message-formatter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendera%2Fvscode-commit-message-formatter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendera%2Fvscode-commit-message-formatter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendera%2Fvscode-commit-message-formatter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendera%2Fvscode-commit-message-formatter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bendera","download_url":"https://codeload.github.com/bendera/vscode-commit-message-formatter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendera%2Fvscode-commit-message-formatter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31735541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T22:19:12.206Z","status":"ssl_error","status_checked_at":"2026-04-12T22:18:33.088Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["git","git-commit","prettier","visual-studio-code","visual-studio-code-extension","vscode","vscode-extension","vscode-formatter"],"created_at":"2024-10-30T07:10:48.575Z","updated_at":"2026-04-13T00:43:42.567Z","avatar_url":"https://github.com/bendera.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Commit Message Formatter\n\nBreaks long lines in commit messages according to the [50/72 rule](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).\nIt can handle bullet points even if those are not separated by empty lines.\n\n## Prerequisites\n\nBefore first use, setup GIT to use VSCode as the default editor:\n\n```bash\ngit config --global core.editor \"code --wait\"\n```\n\nAfter installation it can be executed from the context menu with the\n`Format document` command.\n\n## Example\n\nFrom this unformatted message:\n\n```\nUt vehicula eleifend massa, vitae interdum turpis maximus sit amet. Cras at nunc odio.\n\nPellentesque accumsan elit id convallis vulputate. Cras sapien felis, tincidunt finibus leo at, pharetra congue arcu.\n\n  * Praesent dignissim odio non interdum cursus. Proin lorem mauris, feugiat et risus eu, sodales lacinia libero.\n  * Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n  * Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Vestibulum non erat ac neque commodo convallis.\n\nPraesent sed pellentesque quam. Vivamus et orci ut augue rutrum efficitur a in mi. Etiam sodales purus ac lectus interdum, nec dictum elit aliquet.\n```\n\nbecome this:\n\n```bash\n\nUt vehicula eleifend massa, vitae interdum turpis\n\nmaximus sit amet. Cras at nunc odio.\n\nPellentesque accumsan elit id convallis vulputate. Cras sapien felis,\ntincidunt finibus leo at, pharetra congue arcu.\n\n  * Praesent dignissim odio non interdum cursus. Proin lorem mauris,\n    feugiat et risus eu, sodales lacinia libero.\n  * Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n  * Class aptent taciti sociosqu ad litora torquent per conubia nostra,\n    per inceptos himenaeos. Vestibulum non erat ac neque commodo\n    convallis.\n\nPraesent sed pellentesque quam. Vivamus et orci ut augue rutrum\nefficitur a in mi. Etiam sodales purus ac lectus interdum, nec dictum\nelit aliquet.\n```\n\n## Options\n\nThe extension uses the `git.inputValidationSubjectLength` and the `git.inputValidationLength` \noptions to define the maximum number of characters of the lines and the subject.\n\nOther options are:\n\n* `commit-message-formatter.subjectMode` - How to handle the subject line if it is longer than the allowed length.\n* `commit-message-formatter.collapseMultipleEmptyLines` - Collapse multiple blank lines to single one.\n* `commit-message-formatter.protectedPatterns` - Keep the line untouched, which begins with one of these patterns.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbendera%2Fvscode-commit-message-formatter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbendera%2Fvscode-commit-message-formatter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbendera%2Fvscode-commit-message-formatter/lists"}