
Product
A Fresh Look for the Socket Dashboard
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
eslint-plugin-ban
Advanced tools
Allows you to bannish some methods or functions. Inspired by tslint ban rule
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-ban
:
$ npm install eslint-plugin-ban --save-dev
Note 1: Works with ESLint >= 9. For ESLint < 9, prefer using eslint-plugin-ban
1.x
(compatibility of newer versions not guaranteed).
Note 2: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-ban
globally.
Import ban
plugin in your eslint.config.js
configuration file.
import pluginBan from 'eslint-plugin-ban';
Then use plugin and configure the rules you want to use.
export default [
// ...
{
plugins: { ban: pluginBan },
rules: {
'ban/ban': [
2,
{ name: 'functionName', 'message': 'Prefer use functionName2' },
],
},
},
];
Add ban
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["ban"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"ban/ban": [
2,
{ "name": "functionName", "message": "Prefer use functionName2" }
]
}
}
An error
{
"rules": {
"ban/ban": [
2,
{
"name": ["*", "push"],
"message": "Prefer use es6 spread like [...items, newItem]"
}
]
}
}
A simple warning
{
"rules": {
"ban/ban": [
1,
{
"name": "api",
"message": "This function is deprecated, please use api.call()"
}
]
}
}
Multiple errors
{
"rules": {
"ban/ban": [
"error",
{
"name": "api",
"message": "This function is deprecated, please use api.call()"
},
{
"name": ["*", "push"],
"message": "Prefer use es6 spread like [...items, newItem]"
},
{ "name": "functionName", "message": "Prefer use functionName2" }
]
}
}
Widcard
{
"rules": {
"ban/ban": [
2,
{ "name": ["console", "*"], "message": "Please use our logger" }
]
}
}
error
and warning
at same timePlease feel free to submit, comment anything on this repo :)
FAQs
Allows you to bannish some methods or functions.
The npm package eslint-plugin-ban receives a total of 155,506 weekly downloads. As such, eslint-plugin-ban popularity was classified as popular.
We found that eslint-plugin-ban demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Product
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
Industry Insights
Terry O’Daniel, Head of Security at Amplitude, shares insights on building high-impact security teams, aligning with engineering, and why AI gives defenders a fighting chance.
Security News
MCP spec updated with structured tool output, stronger OAuth 2.1 security, resource indicators, and protocol cleanups for safer, more reliable AI workflows.