eslint-config-jbrems
v1.0.0
Published
Personal eslint configuration
Downloads
1
Readme
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
},
];