0.2.6 • Published 2 years ago

eslint-config-iinitz v0.2.6

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

eslint-config-iinitz

ESLint config base on eslint-config-airbnb.

Installation

yarn add --dev eslint-config-iinitz

Usage

JavaScript

Add iinitz/js-base to the "extends" array in your .eslintrc file.

{
  "extends": ["iinitz/js-base"]
}

JavaScript React

Add iinitz/js-react to the "extends" array in your .eslintrc file.

{
  "extends": ["iinitz/js-react"]
}

TypeScript

Add iinitz/ts-base to the "extends" array in your .eslintrc file.

{
  "extends": ["iinitz/ts-base"],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
}

TypeScript React

Add iinitz/ts-react to the "extends" array in your .eslintrc file.

{
  "extends": ["iinitz/ts-react"],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
}