0.6.0 • Published 5 years ago

eslint-config-tuil v0.6.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

:fire: ESLint TypeScript Config Tuil

An ESLint shareable config for TypeScript that has TypeScript with Prettier, Standard, Jest and React best practises. Used in react-native-template-tuil.

Usage

yarn add eslint-config-tuil --dev

Here is an example .eslintrc.json:

{
  "extends": ["tuil/recommended"],
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
      "project": "./tsconfig.json"
  },
  "settings": {
    "react": {
        "version": "detect"
    }
  },
}