1.3.8 • Published 4 years ago
@resolventa/eslint-config v1.3.8
Resolventa default React+TS eslint-config
- npm i @resolventa/eslint-config
- Extend @resolventain your ESLint config
// .eslintrc.js
module.exports = {
    extends: [
        '@resolventa',
        // If you're using Next.js
        '@resolventa/eslint-config/next',
        // If you're using storybook
        '@resolventa/eslint-config/storybook',
    ],
    parserOptions: {
        project: './tsconfig.json',
    },
};