mirror of
https://github.com/WilliamsNY/linter-configs.git
synced 2024-11-09 19:46:39 -05:00
Add beforeUnmount and unmounted next to beforeDestroy and destroyed, respectively
This commit is contained in:
parent
4f01adfcea
commit
edd72c8506
1 changed files with 1 additions and 1 deletions
2
eslintrc
2
eslintrc
|
@ -151,7 +151,7 @@
|
||||||
"vue/attributes-order": [ "warn" ],
|
"vue/attributes-order": [ "warn" ],
|
||||||
"vue/html-quotes": [ "warn" ],
|
"vue/html-quotes": [ "warn" ],
|
||||||
"vue/no-v-html": "off",
|
"vue/no-v-html": "off",
|
||||||
"vue/order-in-components": [ "warn", { "order": [ "el", "name", "parent", "functional", [ "delimiters", "comments" ], [ "mixins", "extends" ], [ "components", "directives", "filters" ], "inheritAttrs", "model", [ "props", "propsData" ], "emits", "data", "computed", "methods", "setup", "beforeCreate", "created", "beforeMount", "mounted", "beforeUpdate", "updated", "activated", "deactivated", "watch", "beforeDestroy", "destroyed", [ "template", "render" ], "renderError" ] } ],
|
"vue/order-in-components": [ "warn", { "order": [ "el", "name", "parent", "functional", [ "delimiters", "comments" ], [ "mixins", "extends" ], [ "components", "directives", "filters" ], "inheritAttrs", "model", [ "props", "propsData" ], "emits", "data", "computed", "methods", "setup", "beforeCreate", "created", "beforeMount", "mounted", "beforeUpdate", "updated", "activated", "deactivated", "watch", "beforeUnmount", "beforeDestroy", "unmounted", "destroyed", [ "template", "render" ], "renderError" ] } ],
|
||||||
"vue/this-in-template": [ "warn" ]
|
"vue/this-in-template": [ "warn" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue