Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
lint-prepush
Advanced tools
Run linters on committed files of a GIT Branch🔬
This package will run linters on your project for the committed files in your branch.
>=10
.npm install --save-dev husky lint-prepush
yarn
:yarn add --dev husky lint-prepush
Configure the following scripts in package.json to lint your committed files 🔧. You can also follow any of the cosmiconfig methods to configure lint-prepush.
{
+ "husky": {
+ "hooks": {
+ "pre-push": "lint-prepush"
+ }
+ },
+ "lint-prepush": {
+ "base": "master",
+ "tasks": {
+ "*.js": [
+ "eslint"
+ ]
+ }
+ }
}
The above scrips will lint the js files while pushing to git. It will terminate the process if there are any errors, otherwise, the changes will be pushed.
Tasks for a file group will by default run in linear order (eg. "*.js": [ "jest", "eslint"]
will run jest first, then after it's done run eslint).
If you'd like to run tasks for a file group concurrently instead (eg. jest and eslint in parallel), use the concurrent
property like so:
{
+ "lint-prepush": {
+ "tasks": {
+ "*.js": {
+ concurrent: [ "jest", "eslint" ]
+ }
+ }
+ }
}
By default when the tasks succeed, there is no output printed to the console. Sometimes you might need to show linter rules configured for warn
which should be displayed even if the tasks succeed. In order to achieve this, you can pass the config verbose: true
so that the task output is printed to the console when the tasks succeed.
"lint-prepush": {
"verbose": true,
"tasks": {
...
}
}
This package use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
MIT @ Theena Dayalan
FAQs
Run linters on committed files in a Branch🔬
We found that lint-prepush demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.