You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
533 B
JavaScript
26 lines
533 B
JavaScript
![]()
9 months ago
|
module.exports = {
|
||
|
parser: 'vue-eslint-parser',
|
||
|
|
||
|
parserOptions: {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
ecmaVersion: 2020,
|
||
|
sourceType: 'module',
|
||
|
ecmaFeatures: {
|
||
|
jsx: true
|
||
|
}
|
||
|
},
|
||
|
|
||
|
extends: [
|
||
|
'plugin:vue/vue3-recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'prettier',
|
||
|
'plugin:prettier/recommended'
|
||
|
],
|
||
|
|
||
|
rules: {
|
||
|
// override/add rules settings here, such as:
|
||
|
},
|
||
|
globals: {
|
||
|
NodeJS: 'readonly'
|
||
|
}
|
||
|
};
|