/eslint-config-react-native-typescript

ESLint config for TypeScript React Native projects.

Primary LanguageJavaScriptMIT LicenseMIT

πŸ•΅οΈ eslint-config-react-native-typescript

ESLint configuration for React Native projects written in TypeScript.

⭐ Features

πŸ”© Installation

yarn add eslint-config-react-native-typescript

Extend the config in your .eslintrc file.

{
  "extends": "react-native-typescript"
}

πŸ‘ΌπŸ» Does this work with vanilla JavaScript?

Yes! (Except the TypeScript stuff of course)

πŸ§™ Configuration

Simply override any rule by assigning new rules in your .eslintrc file.

{
  "extends": "react-native-typescript",
  "rules": {
    "no-console": 2
  }
}

🧢 Dependencies

Your project needs ESLint and TypeScript installed for this config to work correctly.

yarn add typescript eslint

πŸ“œ License

MIT