You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.9 KiB
87 lines
1.9 KiB
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: ['plugin:vue/vue3-strongly-recommended', 'airbnb-base', 'prettier'],
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
tsx: true,
|
|
jsx: true,
|
|
},
|
|
},
|
|
globals: {
|
|
defineProps: 'readonly',
|
|
defineEmits: 'readonly',
|
|
defineExpose: 'readonly',
|
|
withDefaults: 'readonly',
|
|
},
|
|
plugins: ['vue', '@typescript-eslint', 'prettier'],
|
|
settings: {
|
|
'import/resolver': {
|
|
typescript: {},
|
|
},
|
|
},
|
|
rules: {
|
|
'no-void': 0,
|
|
'no-underscore-dangle': 'off',
|
|
'no-unused-vars': 'off',
|
|
'max-classes-per-file': ['error', 5],
|
|
'import/no-extraneous-dependencies': 'off',
|
|
'no-bitwise': 'off',
|
|
'no-param-reassign': 'off',
|
|
'no-debugger': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/attribute-hyphenation': 'off',
|
|
'import/prefer-default-export': 'off',
|
|
'import/extensions': 'off',
|
|
'no-promise-executor-return': 'off',
|
|
'no-shadow': 'off',
|
|
'no-unused-expressions': 'off',
|
|
'class-methods-use-this': 'off',
|
|
'no-console': 'off',
|
|
'no-nested-ternary': 'off',
|
|
|
|
'vue/attributes-order': [
|
|
'error',
|
|
{
|
|
order: [
|
|
'DEFINITION',
|
|
'LIST_RENDERING',
|
|
'CONDITIONALS',
|
|
'RENDER_MODIFIERS',
|
|
'GLOBAL',
|
|
['UNIQUE', 'SLOT'],
|
|
'TWO_WAY_BINDING',
|
|
'OTHER_DIRECTIVES',
|
|
'OTHER_ATTR',
|
|
'EVENTS',
|
|
'CONTENT',
|
|
],
|
|
alphabetical: false,
|
|
},
|
|
],
|
|
'vue/v-on-event-hyphenation': [
|
|
'error',
|
|
'always',
|
|
{
|
|
autofix: true,
|
|
ignore: [],
|
|
},
|
|
],
|
|
'vue/html-closing-bracket-newline': [
|
|
'error',
|
|
{
|
|
singleline: 'never',
|
|
multiline: 'always',
|
|
},
|
|
],
|
|
},
|
|
}
|