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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@max-iv/eslint-config-vue

v1.0.1

Published

Linting rules specific for the Vue framework

Readme

@max-iv/eslint-config-vue

npm version

Description

Linting rules for Max IV frontend Vue code.

General usage

For further instructions please refer to the information in the readme of the framework agnostic package: @max-iv/eslint-config

Among other things, it contains information on how to:

  • Setup the linter to work with your development environment
  • Use the formatter (Prettier)
  • Work with the linter and formatter settings

Installation & Config

  1. Install the following packages (as development dependencies):

    • @max-iv/eslint-config
    • @max-iv/eslint-config-vue
  2. Extend the config in your local .eslint.config.js or equivalent:

    // eslint.config.js
    import { defineConfig } from 'eslint/config';
    
    import maxivVue from '@max-iv/eslint-config-vue';
    import maxiv from '@max-iv/eslint-config';
    
    export default defineConfig([...maxivVue, ...maxiv]);

    Pay attention to the order of importing config files. The last imported rule is the one that takes effect. The Prettier rules are imported in the maxiv rules, They need to override some rules set in the vue/recommended set.

  3. It is a good idea to have the scripts ready in your package.json file:

      "scripts": {
        "lint": "eslint . --ext .js,.ts,.vue"
      },

    Please note the --ext flag in the lint script. It is needed for the linter to execute on Typescript files as well.

  4. When everything is set up to your liking, run the linter by executing the following commands (it will format and lint the code, and automatically fix some of the issues found by the linter):

      npm run lint -- --fix

Rule Motivations

Here you can find motivations behind some of the Vue specific rules in this config package.

Currently we have no exceptions from the flat/recommended-error ruleset.

Version History

v1.0.0

Changing to flat/recommended-error to avoid using warnings and be compatible with other settings.

v0.1.0

Initial setup

License

GPL-3.0-or-later

Copyright

Copyright Lund University