0.0.1 • Published 5 years ago

@lemoninternet/eslint-config v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 years ago

ESLint Config

Rules

Extends eslint:recommended and has the following changes to the rules:

{
    "rules": {
        "indent": [
            "error",
            4
        ],
        "linebreak-style": [
            "error",
            "unix"
        ],
        "quotes": [
            "warn",
            "double"
        ],
        "semi": [
            "warn",
            "always"
        ]
    },
    "extends": "eslint:recommended"
}

To learn more about rules please read the documentation: https://eslint.org/docs/rules/

Usage

In your configuration set extends to use this package.

{
    "extends": "eslint-config"
}