Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 576 Bytes

base.md

File metadata and controls

24 lines (17 loc) · 576 Bytes

@enormora/eslint-config-base

Base ESLint config preset, agnostic to any environment, framework, or library. Targets ESM-only projects.

Install & Setup

Install the @enormora/eslint-config-base package via npm:

npm install --save-dev @enormora/eslint-config-base

Create an ESLint configuration file (e.g., eslint.config.js) in your project and add the base config to the configuration array:

import { baseConfig } from '@enormora/eslint-config-base';

export default [
    {
        ignores: ['dist/**/*']
    },
    baseConfig
];