Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.