mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'prettier',
|
|
],
|
|
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
ecmaVersion: 2019,
|
|
sourceType: 'module',
|
|
extraFileExtensions: ['.vue'],
|
|
},
|
|
|
|
plugins: ['@typescript-eslint'],
|
|
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
jest: true,
|
|
browser: true,
|
|
},
|
|
|
|
rules: {
|
|
'prefer-destructuring': ['error', { object: true, array: false }],
|
|
// eslint-plugin-vue
|
|
'vue/no-v-html': 'off',
|
|
'vue/attributes-order': 'off',
|
|
'vue/require-v-for-key': 'off',
|
|
'vue/require-default-prop': 'off',
|
|
'vue/no-unused-components': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-setup-props-destructure': 'off',
|
|
'vue/return-in-computed-property': 'off',
|
|
// typescript-eslint
|
|
'@typescript-eslint/camelcase': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'error',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
},
|
|
|
|
overrides: [
|
|
{
|
|
files: ['*.vue'],
|
|
parser: require.resolve('vue-eslint-parser'),
|
|
},
|
|
{
|
|
files: ['**/*.md/*.js', '**/*.md/*.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|