![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
with-staged
Advanced tools
run a command (like linting) on git staged files
Install - Usage - Node API - License: Apache-2.0
npm install with-staged
with-staged [PATTERNS] -- <COMMAND>
Run a command on git staged files.
PATTERNS - only run COMMAND for files matching one of the PATTERNS globs. When
no PATTERNS are given, run COMMAND on all staged files.
COMMAND - the command to execute. File names of matching files are appended as
separate arguments.
Example:
$ with-staged '**/*.js' -- standard
runs `standard index.js test.js etc.js`
$ with-staged '**/*.js' -- prettier --write
runs `prettier --write index.js test.js etc.js`
You can use it with husky
for very lightweight linting on git commit
:
{
"devDependencies": {
"husky": "^0.14.0",
"standard": "^11.0.0",
"with-staged": "^1.0.0"
},
"scripts": {
"lint": "standard",
"precommit": "with-staged '**/*.js' -- npm run lint --"
}
}
withStaged(patterns=['**'], opts={}, cb)
Get a filtered list of staged files.
patterns
is an array of micromatch v2 glob patterns.
opts.cwd
can be set to use a different working directory. The default is process.cwd()
.
cb
is a Node-style (err, files)
callback. files
is an array of file names.
lint-staged is the inspiration for this module.
Differences:
lint-staged
{
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
}
}
with-staged
with-staged '**/*.js' -- prettier --write
with-staged '**/*.js' -- git add
1.0.2
FAQs
run a command (like linting) on git staged files
The npm package with-staged receives a total of 0 weekly downloads. As such, with-staged popularity was classified as not popular.
We found that with-staged 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.