You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/.eslintrc

19 lines
327 B

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