mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-24 23:47:19 -05:00
14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
import pluginVue from 'eslint-plugin-vue';
|
|
import eslintConfig from '@pretendonetwork/eslint-config';
|
|
import { withNuxt } from './.nuxt/eslint.config.mjs';
|
|
|
|
export default withNuxt([
|
|
...pluginVue.configs['flat/recommended'],
|
|
...eslintConfig,
|
|
{
|
|
rules: {
|
|
'vue/multi-word-component-names': 'off'
|
|
}
|
|
}
|
|
]);
|