@moser-inc/eslint-config
v2.3.3
Published
This is the core set of rules to for use in each variation and in isolation when using an alternate library or framework.
Readme
Moser ESLint Config Core 
This is the core set of rules to for use in each variation and in isolation when using an alternate library or framework.
Installation
npm i -D eslint prettier @moser-inc/eslint-configUsage (Flat)
Export the config from your eslint.config.mjs file. The config exports a function that returns a composer instance (see here) that can prepend/append/override rules and configuration.
import moser from '@moser-inc/eslint-config/flat';
export default moser().append(...);For support for type checked rules, include the tsconfigPath option.
import moser from '@moser-inc/eslint-config/flat';
export default moser({ tsconfigPath: './tsconfig.json' }).append(...);Usage (Legacy)
Add the config to the extends option in your .eslintrc.cjs file.
module.exports = {
extends: ['@moser-inc']
}