Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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; // if no errors were found, false otherwise
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'
, 'failOnWarning'
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 are found, use the 'fail'
reporter.
If you want it to throw an error on both warnings and errors, use the 'failOnWarning'
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.4.0 (2014-09-01)
file.success
to true
and fail fail
-reporter only when file.errorCount
is 0, even if files.warningCount > 0
. To achieve the previous behavior of the fail
-reporter you
may use the failOnWarning
-reporter.(b30c0e4c)
FAQs
Lint your CoffeeScript using gulp and CoffeeLint
The npm package gulp-coffeelint receives a total of 435 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.