Install the package with:
npm i -D @novius/eslint-config-vue
If you need ton install peer dependencies, you can use the following command:
npx install-peerdeps --dev @novius/eslint-config-vue
Add the configuration to your eslint.config.js
file:
import noviusConfigVue from '@novius/eslint-config-vue';
export default [...noviusConfigVue];
You can still override the configuration by adding or modifying rules in your eslint.config.js
file.
import noviusConfigVue from '@novius/eslint-config-vue';
export default [
...noviusConfigVue,
{
rules: {
'no-console': 'off',
},
},
];
Licensed under the MIT License, Copyright © Novius.
See LICENSE for more information.