pc端
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.

20 lines
254 B

4 years ago
module.exports = {
env: {
browser: true,
es2021: true,
},
4 years ago
extends: [
'plugin:vue/essential',
'airbnb-base',
],
4 years ago
parserOptions: {
4 years ago
ecmaVersion: 12,
4 years ago
sourceType: 'module',
},
4 years ago
plugins: [
'vue',
4 years ago
],
4 years ago
rules: {
4 years ago
},
};