Socket
Socket
Sign inDemoInstall

eslint-config-raine

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eslint-config-raine

Raine's personal eslint configuration


Version published
Weekly downloads
369
increased by195.2%
Maintainers
1
Install size
19.7 MB
Created
Weekly downloads
 

Readme

Source

eslint-config-raine

npm version

Raine's personal eslint configuration

https://eslint.org/docs/developer-guide/shareable-configs

Base config:
  • standard
Plugins:
  • eslint
  • eslint-config-standard
  • eslint-plugin-import
  • eslint-plugin-jsdoc
  • eslint-plugin-n
  • eslint-plugin-promise

Install

Install eslint-config-raine with eslint plugins:

npm install --save-dev eslint-config-raine eslint eslint-config-standard eslint-plugin-import eslint-plugin-jsdoc eslint-plugin-n eslint-plugin-promise

Usage

package.json
  "eslintConfig": {
    "extends": [
      "raine"
    ]
  }

or

.eslintrc.json
{
  "extends": "raine"
}

Rules

These rules will automatically be used when you extend the config as shown above:

{
  "env": {
    "browser": true,
    "es6": true,
    "mocha": true,
    "jest": true
  },
  "extends": [
    "standard"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaVersion": 2018,
    "sourceType": "module"
  },
  "plugins": [
    "jsdoc"
  ],
  "rules": {
    "arrow-parens": [
      2,
      "as-needed"
    ],
    "brace-style": [
      2,
      "stroustrup"
    ],
    "comma-dangle": [
      2,
      {
        "arrays": "only-multiline",
        "objects": "only-multiline",
        "imports": "always-multiline",
        "exports": "always-multiline"
      }
    ],
    "generator-star-spacing": [
      2,
      {
        "before": false,
        "after": true
      }
    ],
    "indent": [
      2,
      2,
      {
        "flatTernaryExpressions": true
      }
    ],
    "multiline-ternary": 0,
    "no-extra-parens": [
      2,
      "all",
      {
        "nestedBinaryExpressions": false
      }
    ],
    "no-var": 2,
    "object-curly-newline": 0,
    "object-property-newline": 0,
    "operator-linebreak": 0,
    "padded-blocks": 0,
    "quotes": [
      2,
      "single",
      {
        "allowTemplateLiterals": true
      }
    ],
    "space-before-function-paren": 0,
    "yield-star-spacing": [
      2,
      {
        "before": false,
        "after": true
      }
    ],
    "jsdoc/check-alignment": 2,
    "jsdoc/check-indentation": 2,
    "jsdoc/check-syntax": 2,
    "jsdoc/check-tag-names": 2,
    "jsdoc/check-types": 2,
    "jsdoc/implements-on-classes": 2,
    "jsdoc/no-types": 2,
    "jsdoc/no-undefined-types": 2
  }
}

Keywords

FAQs

Last updated on 28 Sep 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc