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

@softonix/eslint-config-vue

v0.1.2

Published

Softonix ESLint configuration

Downloads

10

Readme

@softonix/eslint-config-vue

Vue.js ESLint configuration for Softonix projects, built on top of Vue TypeScript ESLint configuration with custom rule sets.

Installation

npm install @softonix/eslint-config-vue
# or
yarn add @softonix/eslint-config-vue
# or
pnpm add @softonix/eslint-config-vue

Usage

Basic Usage

// eslint.config.js/ts
import { defineSoftonixEslintConfig } from '@softonix/eslint-config-vue'

export default defineSoftonixEslintConfig()

With Options

// eslint.config.js/ts
import { defineSoftonixEslintConfig } from '@softonix/eslint-config-vue'
import eslintAutoImport from './.eslintrc-auto-import.json'

export default defineSoftonixEslintConfig({
  // Auto-imports configuration for global variables
  autoImports: eslintAutoImport,
  
  // Custom ignore patterns
  ignores: {
    extend: ['**/custom-ignore/**'],      // Add to default ignores
    override: ['**/dist/**', '**/build/**'] // Replace default ignores
  }
})

FlatConfigComposer

This configuration returns a FlatConfigComposer instance, allowing you to further customize the configuration:

import { defineSoftonixEslintConfig } from '@softonix/eslint-config-vue'

export default defineSoftonixEslintConfig()
  .append({
    // Add your custom rules here
    rules: {
      'custom-rule': 'error'
    }
  })

Rule Set Configuration Names

This configuration includes several named rule sets that can be individually overridden:

Base Rules (softonix-rules/base)

From @softonix/eslint-config-rules-base - Core ESLint rules

Stylistic Rules (softonix-rules/stylistic)

From @softonix/eslint-config-rules-stylistic - Code formatting and style rules

TypeScript Rules (softonix-rules/typescript)

From @softonix/eslint-config-rules-typescript - TypeScript-specific linting rules

Vue Rules (softonix-rules/vue)

Vue.js framework-specific rules including:

  • Component naming conventions
  • Template formatting
  • Vue directive usage
  • Slot syntax preferences

Override Examples

import { defineSoftonixEslintConfig } from '@softonix/eslint-config-vue'

export default defineSoftonixEslintConfig()
  // Override base ESLint rules
  .override('softonix-rules/base', {
    rules: {
      'no-console': 'warn'
    }
  })
  // Override stylistic rules
  .override('softonix-rules/stylistic', {
    rules: {
      'indent': ['error', 4]
    }
  })
  // Override TypeScript rules
  .override('softonix-rules/typescript', {
    rules: {
      '@typescript-eslint/no-unused-vars': 'warn'
    }
  })
  // Override Vue rules
  .override('rules/vue', {
    rules: {
      'vue/multi-word-component-names': 'error'
    }
  })

Default Ignores

The configuration includes these default ignore patterns:

  • **/public/**
  • **/dist/**
  • **/dist-ssr/**

You can extend or override these using the ignores option.

Dependencies

This package includes and configures:

  • Vue ESLint plugin
  • TypeScript ESLint configuration for Vue
  • Softonix base, stylistic, and TypeScript rule sets
  • ESLint flat config utilities

License

MIT