@cats-cradle/eslint-config
v1.0.11
Published
Eslint rules by profile
Downloads
17
Readme
@cats-cradle/eslint-config
EslintConfig contains common eslint packages and settings organized by profile to help simplify app development by isolating linting complexity.
Getting Started
npm i @cats-cradle/eslint-config
For example, all the styling packages and settings for a react app could be set by:
//.eslintrc.js
module.exports = {
extends: ['@cats-cradle/eslint-config/profile/react'],
parserOptions: {
tsconfigRootDir: __dirname,
},
};