
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@arco-cloud/eslint-config-arco
Advanced tools
ESLint config for JavaScript code.
In order to standardize and enforce's JavaScript coding style across multiple codebases, you can adopt ESLint and this shared ESLint config. This document describes the JavaScript style and its inspirations.
ESLint is required to use this package, as it is an ESLint shareable config.
As this package is held on a private repo, you may want to install it through link, so in this folder, run
npm link
# or
yarn link
To begin using the ESLint config in a codebase, first install ESLint and the config:
# peerdependencies are not installed anymore since npm 3
yarn add @arco-cloud/eslint-config-arco babel-eslint eslint eslint-config-airbnb-base eslint-plugin-import --dev
Then, configure your project's ESLint config to extend eslint-config-arco
(see the ESLint docs on Using a Shareable Config)
Basically, create a .eslintrc
file with this inside
{
"extends": "@arco-cloud/eslint-config-arco"
}
or a.eslintrc.js
javascript file
module.exports = {
extends: "@arco-cloud/eslint-config-arco"
}
FAQs
Shared lint configurations
We found that @arco-cloud/eslint-config-arco demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.