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
308 B
18 lines
308 B
6 months ago
|
module.exports = {
|
||
|
root: true,
|
||
|
parser: 'vue-eslint-parser',
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2020,
|
||
|
sourceType: 'module',
|
||
|
ecmaFeatures: {
|
||
|
jsx: true,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
extends: ['prettier', 'plugin:prettier/recommended'],
|
||
|
|
||
|
rules: {
|
||
|
// override/add rules settings here, such as:
|
||
|
},
|
||
|
};
|