Skip to content

ALVS-Company/eslint-config-alvstech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
    }
  }
}