![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.
gulp-textlint
Advanced tools
gulp plugin for textlint.
var gulp = require('gulp');
var textlint = require('gulp-textlint');
gulp.task('textlint', function() {
return gulp.src('./path/to/src/**/*.md')
.pipe(textlint());
});
As you can path to config for textlint. Like below.
...
gulp.task('textlint', function() {
return gulp.src('./path/to/src/**/*.md')
.pipe(textlint({
formatterName: "pretty-error"
});
});
When you would like to change target dynamically you should use yargs.
e.g.
var argv = require('yargs').argv;
gulp.task('textlint', function() {
var src = argv.t;
return gulp.src(src)
.pipe(textlint());
});
gulp.task('watch', function() {
var src = argv.t;
if (src) {
gulp.watch(src, ['textlint']);
}
});
Then execute watch
task with -t
option.
gulp watch -t "./path/to/*.md"
Please See example/.
FAQs
gulp plugin for textlint
The npm package gulp-textlint receives a total of 42 weekly downloads. As such, gulp-textlint popularity was classified as not popular.
We found that gulp-textlint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
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.