1.0.0 • Published 10 months ago

eslint-config-jbrems v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

eslint-config-jbrems

Personal eslint configuration

Usage

In your project, create a file named eslint.config.js, import from eslint-config-jbrems and export as default.

import jbremsEslintConfig from 'eslint-config-jbrems';

export default jbremsEslintConfig;

This configuration uses the new eslint flat config format which no longer supports the extends option.

To extend or override the configuration, destructure it and add it at the start of your flat config array.

import jbremsEslintConfig from 'eslint-config-jbrems';

export default [
  ...jbremsEslintConfig,
  {
    // your custom config here
  },
];