2.0.0 • Published 1 year ago

eslint-config-mw v2.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

ESLint Config

ESLint configuration used for TypeScript projects.

Install

$ yarn add --dev eslint-config-mw

Usage

Modify eslintConfig in package.json as follows.

TypeScript

{
  "name": "cool-node-server",
  "eslintConfig": {
    "extends": "mw"
  }
}

TypeScript + React

{
  "name": "awesome-react-website",
  "eslintConfig": {
    "extends": "mw/react"
  }
}

TypeScript + React Native

{
  "name": "amazing-native-app",
  "eslintConfig": {
    "extends": "mw/react-native"
  }
}