Files
docuseal/.eslintrc
T
2024-01-13 13:52:58 +02:00

19 lines
314 B
Plaintext

{
"extends": [
"standard",
"plugin:vue/vue3-recommended"
],
"env": {
"browser": true
},
"rules": {
"vue/no-deprecated-html-element-is": 0,
"vue/no-mutating-props": 0,
"vue/no-v-html": 0
},
"parserOptions": {
"ecmaVersion": 2022,
"parser": "@babel/eslint-parser"
}
}