Gathering detailed insights and metrics for gulp-jscs-custom
Gathering detailed insights and metrics for gulp-jscs-custom
Gathering detailed insights and metrics for gulp-jscs-custom
Gathering detailed insights and metrics for gulp-jscs-custom
npm install gulp-jscs-custom
Typescript
Module System
Node Version
NPM Version
55.5
Supply Chain
86
Quality
67.4
Maintenance
25
Vulnerability
97.4
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
88,131
Last Day
8
Last Week
19
Last Month
171
Last Year
4,226
MIT License
5 Stars
32 Commits
5 Forks
3 Watchers
1 Branches
3 Contributors
Updated on Jan 05, 2023
Minified
Minified + Gzipped
Latest Version
0.1.6
Package Id
gulp-jscs-custom@0.1.6
Size
4.77 kB
NPM Version
2.9.1
Node Version
0.12.3
Cumulative downloads
Total Downloads
Last Day
300%
8
Compared to previous day
Last Week
-51.3%
19
Compared to previous week
Last Month
56.9%
171
Compared to previous month
Last Year
-81.4%
4,226
Compared to previous year
4
Package | gulp-jscs-custom |
Description | Gulp plugin for JSCS with custimizable reporters, including Jenkins-friendly Checkstyle. You can output files too. |
Node Version | >= 0.4 |
npm install gulp-jscs-custom --save-dev
1var gulp = require('gulp'), 2 jscs = require('gulp-jscs-custom'); 3 4gulp.task('checkstyle', function () { 5 return gulp.src('./**/*.js') 6 .pipe(jscs({ 7 esnext: false, 8 configPath: '.jscsrc', 9 reporter: 'checkstyle', 10 filePath: './jscs.xml', 11 failOnError: false 12 })); 13}); 14
Option | Type | Description | Default value |
---|---|---|---|
esnext | Boolean | JSCS's option to parse esnext | ```javascript false ``` |
configPath | String | Path to JSCS Config | ```javascript '.jscsrc' ``` |
reporter | String |
Which reporter JSCS will use. Options include: **JSCS Reporters**: 'console' * * 'inline' * * 'junit' * * 'text' * You can also set the file path to a custom reporter. | ```javascript 'console' ``` |
filePath | String | Output file path. If set to `null` will print to stdout | ```javascript null ``` |
failOnError | Boolean | If true, gulp task will break if JSCS finds any linting error | ```javascript false ``` |
alwaysCreateReport | Boolean | Create the report even if no errors were found | ```javascript false ``` |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 4/28 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-02-10
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More