1.0.0 • Published 4 years ago

eslint-config-slash-react-native v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

Installation

yarn add eslint-config-slash-react-native --dev

Usage

Create .eslintrc.js and place the below content

module.exports = {
  root: true,
  extends: 'slash-react-native'
};

Override Configuration

Update .eslintrc.js with the below content

module.exports = {
  root: true,
  extends: 'slash-react-native',
  rules: {
    "no-unused-vars": 1
  }
};