This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-03 23:53:38 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
node: true,
|
|
|
|
},
|
|
|
|
parserOptions: {
|
|
|
|
parser: '@babel/eslint-parser',
|
|
|
|
requireConfigFile: false,
|
|
|
|
},
|
|
|
|
extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'],
|
|
|
|
plugins: [],
|
|
|
|
// add your custom rules here
|
2022-01-10 01:20:14 +00:00
|
|
|
rules: {
|
|
|
|
'vue/multi-word-component-names': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
ignores: ['index', 'default', 'Apprentices', 'Missions', 'Wisdom'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-01-03 23:53:38 +00:00
|
|
|
}
|