
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Poper makes sure that your git commit messages are well-formed. It's partly inspired by this article written by tpope. Rules specified there form the basis of Poper rules. But Poper doesn't stop there. It also doesn't like generic commit messages like 'oops, fix tests'. Poper was created to be used by Pronto, but will work perfectly well in whatever scenario you'll come up for it!
Install Poper like any other gem and then run it from your terminal, specifying a commit:
gem install poper
cd /repo/which/commits/you/want/to/check
poper run HEAD~3
Every commit between current HEAD and specified commit will be checked.
The behavior of Poper can be controlled via the .poper.yml
configuration
file. It must be placed in your project directory. A sample file, .poper.sample.yml
, is included for easy setup.
The file has the following format:
disallow_single_word:
enabled: true
character_limit:
enabled: true
number: 72
summary_character_limit:
enabled: true
number: 50
disallow_generic:
enabled: true
words:
- fix
- fixed
- fixes
- oops
- todo
- fixme
- commit
- changes
- hm
- hmm
- hmmm
- test
- tests
- quickfix
enforce_capitalized:
enabled: true
All properties that can be specified via .poper.yml
, can also be specified
via environment variables. Their names will be the upcased path to the property.
For example: POPER_ENFORCE_CAPITALIZED_ENABLED
or POPER_DISALLOW_GENERIC_WORDS
. (In the case of the latter, since environment variables don't support arrays, use a comma-separated list of words and poper will parse them appropriately.) Environment variables
will always take precedence over values in configuration file.
FAQs
Unknown package
We found that poper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.