npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-vue-composable

v1.0.0

Published

ESLint plugin providing Vue composable related rules

Downloads

2,219

Readme

eslint-plugin-vue-composable

ESLint plugin providing Vue composable related rules.

Installation

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

Configrations

For flat config (eslint.config.(js|cjs|mjs))

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'
    }
  }
]

For legacy config (.eslintrc)

add configuration in your .eslintrc:

module.exports = {
  extends: [
    'plugin:vue-composable/recommended'
  ]
}

Rules

vue-composable/composable-placement

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.

Rule Details

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>

vue-composable/lifecycle-placement

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.

Rule Details

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>

License

MIT