Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
eslint-config-ebay
Advanced tools
This package provides eBay's .eslintrc as a shared npm module. This is similar to that of airbnb's extensible shared config.
There are two ESLint configurations available.
The default export contains all of our ESLint rules, including EcmaScript 6+.
npm install --save-dev eslint-config-ebay eslint
"extends": "ebay"
to your .eslintrcLints ES5 and below.
npm install --save-dev eslint-config-ebay eslint
"extends": "ebay/legacy"
to your .eslintrcInstall the ESLint validator plugin in your favorite text editor. Next step is to point the eslint config to the rules in this repo. To do that, clone the repo
git clone https://github.com/ebay/eslint-config-ebay.git
and point the config to
<path to repo>/eslint-config-ebay/legacy.js
<path to repo>/eslint-config-ebay/index.js
For example, in Sublime Text editor add the below in SublimeLinter.sublime-settings
file
"linters": {
"eslint": {
"@disable": false,
"args": [
"-c",
"/Users/someUser/eslint-config-ebay/index.js"
],
"excludes": []
}
}
FAQs
ESLint config
The npm package eslint-config-ebay receives a total of 88 weekly downloads. As such, eslint-config-ebay popularity was classified as not popular.
We found that eslint-config-ebay demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 25 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.