New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-actano

Package Overview
Dependencies
Maintainers
0
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-actano

Beautiful Javascript code at Actano

  • 13.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
256
decreased by-10.18%
Maintainers
0
Weekly downloads
 
Created
Source

Actano Javascript Style Guide

npm code style: actano

This package provides Actano's .eslintrc.json as an extensible shared config. It extends the popular config by Airbnb and changes a few rules to fit our taste.

Usage

Our default export contains all of our ESLint rules, including ECMAScript 6+ and React. It requires eslint, eslint-plugin-import, eslint-plugin-react, and eslint-plugin-jsx-a11y.

Install this package and all its peer dependencies. Unfortunately, they cannot be normal dependencies. Please consult the package.json for correct version information of the peer dependencies.

yarn add --dev eslint eslint-config-actano eslint-plugin-import eslint-plugin-react eslint-plugin-jsx-a11y

Create an .eslintrc.yml with this content:

extends: actano

You might need enable the mocha context and allow having no-unused-expression in your test files by configuring this in a separate .eslintrc.yml inside your test directory:

env:
    mocha: true
rules:
    no-unused-expressions: off

Deviations from Airbnb

We are adopting most of the rules from Airbnb. Please check out their styleguide to get the full picture.

We do have different opinions on these topics:

Semicolons

They are not needed and code looks better without them. eslint: semi

Function names

Allow function expressions without a name. eslint: func-names

Underscores in function names

We use leading underscores to express that a function is private. eslint: no-underscore-dangle

Constant conditions

When using generators, while (true) loops make sense. eslint: no-constant-condition

Iterators

We want to use generators. eslint: no-iterator

ForOfStatement

for .. of loops provide an easy way to iterate through iterators. eslint: no-restricted-syntax

Arrow functions

We want to not be forced how are writing our arrow function bodies. eslint: implicit-arrow-linebreak

Destructoring props

We don't want to be forced to always destructore props in React components. eslint: react/destructuring-assignment

Keywords

FAQs

Package last updated on 18 Dec 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc