Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gulp-coffeelint
Advanced tools
CoffeeLint plugin for gulp 3.
First, install gulp-coffeelint
as a development dependency:
npm install --save-dev gulp-coffeelint
Then, add it to your gulpfile.js
:
var gulp = require('gulp');
var coffeelint = require('gulp-coffeelint');
gulp.task('lint', function () {
gulp.src('./src/*.coffee')
.pipe(coffeelint())
.pipe(coffeelint.reporter())
});
coffeelint([optFile,] [opt,] [literate,] [rules])
All arguments are optional. By default gulp-coffeelint
will walk up the directory tree looking for a coffeelint.json
(per file, i.e. dirname) or a package.json
that has a coffeelintConfig
object (as the cli does). Also, .litcoffee
and .coffee.md
files will be treated as Literate CoffeeScript.
Type: String
Absolute path of a json
file containing options for coffeelint
.
Type: Object
Options you wish to send to coffeelint
. If optFile
is given, this will be ignored.
Type: Boolean
Are we dealing with Literate CoffeeScript?
Type: Array[Function]
Default: []
Add custom rules to coffeelint
.
Adds the following properties to the file
object:
file.coffeelint.success = true; // or false
file.coffeelint.errorCount = 0; // number of errors returned by `coffeelint`
file.coffeelint.warningCount = 0; // number of warnings returned by `coffeelint`
file.coffeelint.results = []; // `coffeelint` results, see http://www.coffeelint.org/#api
file.coffeelint.opt = {}; // the options used by `coffeelint`
file.coffeelint.literate = false; // you guessed it
coffeelint.reporter(name)
Assuming you would like to make use of those pretty results we have after piping through coffeelint()
there are some bundled reporters at your service.
Type: String
Default: 'default'
Possible Values: 'default'
, 'fail'
The 'default'
reporter uses coffeelint-stylish to output a pretty report to the console. See usage example above.
If you would like your stream to emit
an error
(e.g. to fail the build on a CI server), when errors or warnings are found, use the 'fail'
reporter.
This example will log errors and warnings using the coffeelint-stylish reporter, then fail if coffeelint
was not a success.
.pipe(coffeelint())
.pipe(coffeelint.reporter())
.pipe(coffeelint.reporter('fail'))
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using gulp and npm-test. Plus, make sure to adhere to these commit message conventions.
0.3.3 (2014-05-17)
FAQs
Lint your CoffeeScript using gulp and CoffeeLint
The npm package gulp-coffeelint receives a total of 748 weekly downloads. As such, gulp-coffeelint popularity was classified as not popular.
We found that gulp-coffeelint 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.