mirror of
https://github.com/MellonNet/mln-vue.git
synced 2025-12-19 21:19:31 -06:00
26 lines
528 B
JavaScript
26 lines
528 B
JavaScript
/* 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/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}",
|
|
"cypress/e2e/**.{cy,spec}.{js,ts,jsx,tsx}"
|
|
],
|
|
"extends": [
|
|
"plugin:cypress/recommended"
|
|
]
|
|
}
|
|
]
|
|
}
|