
Product
Redesigned Repositories Page: A Faster Way to Prioritize Security Risk
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
eslint-plugin-no-console-log
Advanced tools
Eslint plugin to warn on usage of `console.log`, unlike the built-in rule, this allows other `console` methods.
no-console: [2, { allow: ["warn", "error"] }]
An eslint plugin to warn on usage of console.log
.
Table of Contents generated with DocToc
npm i -S eslint-plugin-no-console-log
Add plugins
section and specify eslint-plugin-no-console-log as a plugin.
{
"plugins": [
"no-console-log"
]
}
Then, enable the rule.
{
"rules": {
"no-console-log/no-console-log": 1
}
}
This rule warns when it sees console.log
only. Other variants, like console.warn
are allowed, as it's assumed you've left them there on purpose. If you'd like to disable all console methods use the built-in rule no-console
.
The following patterns are considered warnings:
console.log('hi')
The following patterns are not warnings:
console.time('timer')
console.timeEnd('timer')
console.warn('oops')
console.error('kittens!')
If you want to disable all console
use to enforce a custom logging option.
https://github.com/eslint/eslint/issues/2621#issuecomment-105961888
Tests are in eslint's RuleTester.
npm test
will run the testsnpm run tdd
will run the tests on every file change.To publish, run npm run release -- [{patch,minor,major}]
NOTE: you might need to sudo ln -s /usr/local/bin/node /usr/bin/node
to ensure node is in your path for the git hooks to work
npm i -g npm
git push --follow-tags
will work. brew install git
Artistic 2.0 © Joey Baker and contributors. A copy of the license can be found in the file LICENSE
.
v2.0.0 | 2016-03-07
FAQs
Eslint plugin to warn on usage of `console.log`, unlike the built-in rule, this allows other `console` methods.
The npm package eslint-plugin-no-console-log receives a total of 0 weekly downloads. As such, eslint-plugin-no-console-log popularity was classified as not popular.
We found that eslint-plugin-no-console-log 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.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
Security News
Slopsquatting is a new supply chain threat where AI-assisted code generators recommend hallucinated packages that attackers register and weaponize.
Security News
Multiple deserialization flaws in PyTorch Lightning could allow remote code execution when loading untrusted model files, affecting versions up to 2.4.0.