Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-mono

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-mono

JavaScript Mono Style - ESLint Shareable Config

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

eslint-config-mono travis npm downloads

An ESLint Shareable Config heavily based on JavaScript Standard Style

Note: This is really intended for personal use, but feel free to use it if it looks good to you

Install

npm install eslint-config-mono

Usage

Shareable configs are designed to work with the extends feature of .eslintrc files. You can learn more about Shareable Configs on the official ESLint website.

To use the JavaScript Standard Style shareable config, first run this:

npm install -D -E eslint eslint-config-mono

Then, add this to your .eslintrc file:

{
  "extends": "mono"
}

Custom rules

{
  "array-bracket-spacing": ["warn", "always"],
  "comma-dangle": [
    "warn",
    {
      "arrays": "always",
      "objects": "always",
      "imports": "always",
      "exports": "always",
      "functions": "ignore"
    }
  ],
  "quote-props": ["warn", "as-needed", { "keywords": true }],
  "no-sequences": ["off"],
  "no-console": ["warn"],
  "object-curly-spacing": ["warn", "always"],
  "standard/object-curly-even-spacing": ["off"]
}

Keywords

FAQs

Package last updated on 19 May 2018

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