2023-03-07 01:19:05 -05:00
|
|
|
/* eslint-env node */
|
|
|
|
require('@rushstack/eslint-patch/modern-module-resolution')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
'extends': [
|
|
|
|
'plugin:vue/vue3-essential',
|
|
|
|
'eslint:recommended',
|
|
|
|
'@vue/eslint-config-typescript',
|
|
|
|
'@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
],
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 'latest'
|
2023-03-18 13:49:02 -04:00
|
|
|
},
|
|
|
|
'ignorePatterns': ["*.config.*"]
|
2023-03-07 01:19:05 -05:00
|
|
|
}
|