Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
eslint-config-edx
Advanced tools
eslint-config-edx
This is the edX ESLint shareable config for linting ES2015+ JavaScript. See eslint-config-edx-es5
if you need to lint ES5 code.
Note that versions of eslint-config-edx-es5 prior to v2.0.0 are INCOMPATIBLE with this config.
edX maintains high-level documentation on the Open edX Developer's Guide on how we write new JavaScript features, including our use of RequireJS, Underscore and Backbone. This document and config seeks to be a lower-level guide on the semantics of how we write ES2015+ JavaScript, including nuts and bolts about spacing, syntax, and variable naming.
For the most part, edX follows the thoroughly documented Airbnb JavaScript Style Guide for ES2015. In addition to the base Airbnb rules, edX adds or extends several of our own. They are described below.
####dollar-sign
Setting: ["error", "ignoreProperties"]
Explanation: All variables that represent jQuery objects should be named starting with a $
. Object properties may ignore this rule.
Example:
// Correct pattern
const $fooSpan = $('span#foo');
const ignoreProps = {};
ignoreProps.fooSpan = $('span#foo');
// Linter error
const fooSpan = $('span#foo');
FAQs
ESLint config for edX JavaScript ES2015+ code.
We found that eslint-config-edx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.