2.0.2 • Published 2 years ago

eslint-config-alvstech v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

eslint-config-alvstech

ALVS - Advanced Level Virtual Systems default eslint code pattern config for used technologies.

Usage

You can extended one of these configurations, depending on the project you are developing:

-- alvstech -- alvstech/typescript

PS.: If you are using alvstech/typescript config you will need to install some dependencies:

yarn add @typescript-eslint/eslint-plugin @typescript-eslint/parser

finally, install ALVS ESLint config

yarn eslint-config-alvstech

Setup

For setting up ALVS ESLint Config, just extend and tweak the config as you like in your package.json:

{
  "eslintConfig": {
    "root": true,
    "extends": "alvstech/SELECTED-ESLINT-CONFIG",
    "parserOptions": {
      "project": "./tsconfig.json"
    }
  }
}