Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

ESLint Config Constellation

Install

yarn add --dev eslint-config-constellation

and then

npx install-peerdeps --dev eslint-config-constellation

Usage

On your .eslintrc

{
  "extends": ["eslint-config-constellation"],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "settings": {
    "import/parsers": {
      "@typescript-eslint/parser": [".ts", ".tsx"]
    },
    "import/resolver": {
      "typescript": {
        "project": "./tsconfig.json"
      }
    }
  }
}