131 lines
4.6 KiB
JavaScript
131 lines
4.6 KiB
JavaScript
import eslint from '@eslint/js';
|
|
import eslintPluginVue from 'eslint-plugin-vue';
|
|
import globals from 'globals';
|
|
|
|
export default [
|
|
eslint.configs.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
...globals.jest,
|
|
vi: 'readonly',
|
|
defineNuxtConfig: 'readonly',
|
|
defineNuxtPlugin: 'readonly',
|
|
defineNuxtLink: 'readonly',
|
|
defineNuxtRouteMiddleware: 'readonly',
|
|
defineEventHandler: 'readonly',
|
|
useRuntimeConfig: 'readonly',
|
|
useNuxtApp: 'readonly'
|
|
}
|
|
},
|
|
rules: {
|
|
'no-empty': 'off',
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-fallthrough': 'off',
|
|
'padding-line-between-statements': [
|
|
'error',
|
|
{ blankLine: 'always', prev: ['const', 'let', 'var'], next: '*' },
|
|
{ blankLine: 'any', prev: ['const', 'let', 'var'], next: ['const', 'let', 'var'] },
|
|
{ blankLine: 'any', prev: ['case', 'default'], next: 'break' },
|
|
{ blankLine: 'any', prev: 'case', next: 'case' },
|
|
{ blankLine: 'always', prev: '*', next: 'return' },
|
|
{ blankLine: 'always', prev: 'block', next: '*' },
|
|
{ blankLine: 'always', prev: '*', next: 'block' },
|
|
{ blankLine: 'always', prev: 'block-like', next: '*' },
|
|
{ blankLine: 'always', prev: '*', next: 'block-like' },
|
|
{ blankLine: 'always', prev: ['import'], next: ['const', 'let', 'var'] }
|
|
]
|
|
}
|
|
},
|
|
{
|
|
files: ['vue'],
|
|
plugins: {
|
|
vue: eslintPluginVue
|
|
},
|
|
rules: {
|
|
'vue/valid-template-root': 'error',
|
|
'vue/no-multiple-template-root': 'off',
|
|
'vue/this-in-template': ['error', 'never'],
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-reserved-component-names': 'off',
|
|
'vue/component-tags-order': [
|
|
'error',
|
|
{
|
|
order: ['template', 'script', 'style']
|
|
}
|
|
],
|
|
'vue/require-explicit-emits': [
|
|
'error',
|
|
{
|
|
allowProps: false
|
|
}
|
|
],
|
|
'vue/attributes-order': [
|
|
'error',
|
|
{
|
|
order: ['CONDITIONALS', 'LIST_RENDERING', 'DEFINITION', ['UNIQUE', 'SLOT'], 'RENDER_MODIFIERS', 'GLOBAL', 'TWO_WAY_BINDING', 'OTHER_DIRECTIVES', ['OTHER_ATTR', 'EVENTS'], 'CONTENT'],
|
|
alphabetical: false
|
|
}
|
|
],
|
|
'vue/order-in-components': [
|
|
'error',
|
|
{
|
|
order: [
|
|
'el',
|
|
'name',
|
|
'key',
|
|
'parent',
|
|
'functional',
|
|
'extends',
|
|
'mixins',
|
|
['delimiters', 'comments'],
|
|
'ROUTER_GUARDS',
|
|
'layout',
|
|
'middleware',
|
|
'validate',
|
|
'scrollToTop',
|
|
'transition',
|
|
'loading',
|
|
'inheritAttrs',
|
|
'model',
|
|
'emits',
|
|
'setup',
|
|
'fetch',
|
|
'head',
|
|
['props', 'propsData'],
|
|
['provide', 'inject'],
|
|
'asyncData',
|
|
'data',
|
|
'watch',
|
|
'watchQuery',
|
|
'LIFECYCLE_HOOKS',
|
|
'methods',
|
|
'computed',
|
|
['components', 'directives', 'filters'],
|
|
['template', 'render'],
|
|
'renderError'
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
files: ['**/*.{js,mjs,cjs,ts'],
|
|
plugins: {
|
|
vue: eslintPluginVue
|
|
},
|
|
languageOptions: {
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
ignores: ['**/dist/**', '**/node_modules/**', '**/.nuxt/**', 'build/**', '**/prism.js']
|
|
}
|
|
];
|