Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 410 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 410 Bytes

@hakatashi/eslint-config

Install

npm install @hakatashi/eslint-config --save-dev

or

yarn add @hakatashi/eslint-config --dev

Usage

In your eslint.config.mjs:

import hakatashi from '@hakatashi/eslint-config';

// Or for typescript
import hakatashi from '@hakatashi/eslint-config/typescript.js';

export default [
    ...hakatashi,

    {
        // Your ESLint config
    },
];