@computerrock/eslint-config-react-native-app

ESLint configuration for React Native projects

Usage no npm install needed!

<script type="module">
  import computerrockEslintConfigReactNativeApp from 'https://cdn.skypack.dev/@computerrock/eslint-config-react-native-app';
</script>

README

@computerrock/eslint-config-react-native-app

This package contains shareable ESLint configuration used for React projects.

Usage

Install:

$ npm install @computerrock/eslint-config-react-native-app --save-dev

Create a file named .eslintrc with following contents in the root folder of your project:

{
    "extends": "@computerrock/eslint-config-react-native-app",
    "rules": {
        "valid-jsdoc": "warn",
        "require-jsdoc": "off"
    }
}

You can override the settings from @computerrock/eslint-config-react-app by editing the .eslintrc file. Learn more about configuring ESLint on the ESLint website.