1.0.10-beta1 • Published 4 years ago

@envase/eslint-config-envase-connect v1.0.10-beta1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

ESLint-Config-Envase-Connect

This package is the common source for ESLint rules for Envase Connect.

To install, please run the following command and install the VSCode plugin

ESLint

npm i -D @envase/eslint-config-envase-connect

Helpful VSCode settings to autofix any simple lint issues

1. Format on save (checked)
2. Autosave: afterDelay
3. Default formatter (ESlint)
4. Eslint › Code Actions On Save Mode: All

To override a rule, simply add a rule to your .eslintrc

Ex:

{
    "extends": [
        "@envase/eslint-config-envase-connect"
    ],
    "rules": {
        "no-console": "warn"
    }
}