eslint-config-o2team-rn
v0.1.0
Published
ESLint Shareable Config for the O2Team RN Style Guide. Base on eslint-config-o2team.
Maintainers
Readme
eslint-config-o2team-rn 
ESLint Shareable Config for the O2Team RN Style Guide. Base on eslint-config-o2team.
Installation
$ npm install --save-dev eslint eslint-config-o2team-rnUsage
eslint-config-o2team-rn
Once the eslint-config-o2team-rn package is installed, you can use it by specifying o2team in the extends section of your ESLint configuration.
{
"extends": "o2team-rn",
"rules": {
// Additional, per-project rules...
}
}Or you can specifying eslint-config-o2team-rn in the eslintConfig section of your package.json
{
"eslintConfig": {
"extends": "eslint-config-o2team-rn"
}
}