@axenuab/eslint-config-axenu
v1.1.4
Published
A default eslint config for project at Axenu AB
Downloads
38
Readme
eslint-config-axenu
This repo exports a shared config for eslint that should be used in all Axenu projects.
Usage
- Install the package using command
npm install @axenuab/eslint-config-axenu. - Install eslint package using command
npm install eslint.
For React Native
Create an .eslintrc.js file in your repo like this:
module.exports = {
extends: ['@axenu/react-native'],
};In package.json
Create two scripts like this:
"lint": "eslint .""lint-fix": "eslint --fix ."
Run lint
npm run lint
