5.0.3 • Published 2 months ago

@lomray/eslint-config v5.0.3

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

eslint-config

This package provides Lomray eslint config as an extensible shared config.

Usage

  1. Install package:

    npm i --save-dev @lomray/eslint-config
  2. Add config to your eslint.config.js

import lomrayConfig from '@lomray/eslint-config';

export default [
    ...lomrayConfig.recommended, // without files and ignores
    // or
    ...lomrayConfig.config(), // with predefined files and ignores
    // or
    ...lomrayConfig.config({ here: 'your config to exend' }),
];