@novius/eslint-config-base
v3.0.0
Published
Novius's ESLint base configuration
Readme
What's included
@eslint/jsrecommended ruleseslint-plugin-import-xfor import ordering and validationeslint-config-prettierto disable style rules handled by Prettier- Globals for browser, Node.js, ES2021, Livewire, and Google
Requires ESLint >= 10 (flat config format only).
Installation
pnpm add -D eslint @novius/eslint-config-baseUsage
Add the configuration to your eslint.config.js file:
import noviusConfigBase from '@novius/eslint-config-base';
export default [...noviusConfigBase];You can override rules in your eslint.config.js file:
import noviusConfigBase from '@novius/eslint-config-base';
export default [
...noviusConfigBase,
{
rules: {
'no-console': 'off',
},
},
];License
Licensed under the MIT License, Copyright © Novius.
See LICENSE for more information.
