forked from gzt/A8000
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.
18 lines
388 B
18 lines
388 B
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended', // 如果使用 TypeScript
|
|
'plugin:vue/vue3-recommended', // 如果使用 Vue 3
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
// 你可以在这里添加或修改 ESLint 规则
|
|
},
|
|
};
|