
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
grunt-coffeelint
Advanced tools
Lint your CoffeeScript with CoffeeLint.
Install npm package, next to your project's Gruntfile.js file:
npm install grunt-coffeelint
Add this line to your project's Gruntfile.js:
grunt.loadNpmTasks('grunt-coffeelint');
A few additional options are supported:
Type: Boolean
Default value: false
Set force to true to report CoffeeLint errors but not fail the task.
coffeelint is a multitask, so you can use it similary to lint, watch etc...
grunt.initConfig({
...
coffeelint: {
app: ['app/*.coffee', 'scripts/*.coffee']
},
...
});
grunt.initConfig({
...
coffeelint: {
app: ['app/*.coffee', 'scripts/*.coffee'],
tests: {
files: {
src: ['tests/*.coffee']
},
options: {
'no_trailing_whitespace': {
'level': 'error'
}
}
}
},
...
});
grunt.initConfig({
...
coffeelint: {
options: {
'no_trailing_whitespace': {
'level': 'error'
}
}
},
...
});
grunt.initConfig({
...
coffeelint: {
options: {
configFile: 'coffeelint.json'
}
},
...
});
Task options take precedence over configFile options.
For available options see coffeelint homepage.
FAQs
Lint your Coffee
The npm package grunt-coffeelint receives a total of 4,704 weekly downloads. As such, grunt-coffeelint popularity was classified as popular.
We found that grunt-coffeelint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.