eslint-config/packages/vue/index.js

15 lines
233 B
JavaScript
Raw Permalink Normal View History

2019-07-18 03:27:54 +08:00
module.exports = {
2019-07-18 03:30:57 +08:00
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
2019-07-18 03:27:54 +08:00
extends: [
'@antfu/eslint-config',
2019-07-18 03:30:57 +08:00
'plugin:vue/recommended',
2019-07-18 03:27:54 +08:00
],
plugins: [
2019-07-18 03:30:57 +08:00
'vue'
2019-07-18 03:27:54 +08:00
],
2019-07-18 03:30:57 +08:00
rules: {}
2019-07-18 03:27:54 +08:00
}