1.0.11 • Published 5 months ago

@cats-cradle/eslint-config v1.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@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,
  },
};