@ridecell/eslint-config-react
v1.6.1-2
Published
ESLint configuration for Ridecell React apps
Downloads
353
Readme
@ridecell/eslint-config-react
ESLint configuration for Ridecell React apps
NOTE: This is not the same https://www.npmjs.com/package/eslint-config-react
Installation
Run the following command in your project root directory:
yarn add --dev @ridecell/eslint-config-reactThen you need to create 3 files:
.eslintrcwith the following content:
{
"parser": "babel-eslint",
"extends": "@ridecell/eslint-config-react"
}.prettierrc.jswith the following content:
module.exports = require('@ridecell/eslint-config-react/.prettierrc').prettierignorewith the following content:
*.json
node_modules
distThat's it! You can always override those setting.
Prettier
You can add the following 2 commands to your package.json scripts
"prettier-changed": "pretty-quick",- prettifies only the files that were changed"prettier-all": "prettier --write \"**/*.{js,jsx}\""- prettifies all the files
Development
To test changes to the lint rules against code, use npm-link in a project. Helpful guide
