ESLint plugin providing Vue composable related rules.
Install it with:
$ npm install -D eslint-plugin-vue-composable
You have to install eslint
and eslint-plugin-vue
if you have not installed them yet:
$ npm install -D eslint eslint-plugin-vue
add configuration in your eslint.config.(js|cjs|mjs)
:
import vueComposable from 'eslint-plugin-vue-composable'
export default [
...vueComposable.configs['flat/recommended'],
// you can override vue-composable recommended rules
{
rules: {
'vue-composable/lifecycle-placement': 'warn'
}
}
]
add configuration in your .eslintrc
:
module.exports = {
extends: [
'plugin:vue-composable/recommended'
]
}
Enforce composable call be placed in setup()
or another composable,
not after an await
expression. Functions start with use
is treated as composables in this rule.
Examples of incorrect code for this rule:
function foo() {
/* BAD: composable is in non-composable function */
useBar()
}
function useBaz() {
function qux() {
/* BAD: parent function is non-composable function */
useBar()
}
}
export default defineComponent({
async setup() {
await fetch()
/* BAD: composable is after `await` */
useBaz()
}
})
Examples of correct code for this rule:
function useFoo() {
/* GOOD: composable is in another composable */
useBar()
}
export default defineComponent({
setup() {
/* GOOD: composable is in setup() */
useBaz()
}
})
<script setup>
/* GOOD: composable is in script setup */
useFoo()
await fetch()
/* GOOD: you can place composable after `await` if it is in script setup */
useBar()
</script>
Enforce lifecycle hook call be placed in setup()
or another composable, not after an await
expression.
Supporting core lifecycle hooks and Vue Router's hooks.
Examples of incorrect code for this rule:
function foo() {
/* BAD: the lifecycle hook is in non-composable function */
onMounted(() => {})
}
function useBaz() {
function qux() {
/* BAD: parent function is non-composable function */
onMounted(() => {})
}
}
export default defineComponent({
async setup() {
await fetch()
/* BAD: the lifecycle hook is after `await` */
onMounted(() => {})
}
})
Examples of correct code for this rule:
function useFoo() {
/* GOOD: the lifecycle hook is in a composable */
onMounted(() => {})
}
export default defineComponent({
setup() {
/* GOOD: the lifecycle hook is in setup() */
onMounted(() => {
/* GOOD: the lifecycle hook can be in another lifecycle hook */
onBeforeMount(() => {})
})
}
})
<script setup>
/* GOOD: the lifecycle hook is in script setup */
onMounted(() => {})
await fetch()
/* GOOD: you can place a lifecycle hook after `await` if it is in script setup */
onBeforeUnmount(() => {})
</script>
MIT