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

@truenine/eslint10-config

v2026.10326.11646

Published

ESLint 10 configuration package for Compose Client projects with TypeScript, Vue, and modern JavaScript support

Downloads

475

Readme

@truenine/eslint10-config

An ESLint 10 configuration package optimised for Compose Client projects, providing caching optimisation, performance tuning, and rule optimisation features.

Features

Performance Optimisation

  • Smart Caching: Support for efficient caching strategies
  • Parallel Processing: Auto-utilise multi-core CPU for parallel linting
  • Rule Optimisation: Option to skip performance-intensive rules
  • Progressive Checking: Priority checking for critical files

Preset Configs

  • performance: Performance-first, suitable for large projects or CI environments
  • quality: Quality-first, suitable for small projects or dev environments
  • balanced: Balanced configuration, default recommendation
  • ci: CI environment-specific config
  • dev: Dev environment-friendly config
  • library: Library project strict config

Smart Ignores

  • Auto-ignore build artefacts, cache directories, compressed files, etc.
  • Configurable priority checking for critical files
  • Support for custom ignore patterns

Usage

Basic Usage

// eslint.config.mjs
import eslint10 from '@truenine/eslint10-config'

export default eslint10({
  type: 'lib',
  typescript: {
    strictTypescriptEslint: true,
    tsconfigPath: './tsconfig.json',
  },
})

Using Preset Configs

// eslint.config.mjs
import eslint10, { applyPreset } from '@truenine/eslint10-config'

export default eslint10({
  type: 'lib',
  typescript: {
    strictTypescriptEslint: true,
    tsconfigPath: './tsconfig.json',
  },
  // Use balanced preset
  ...applyPreset('balanced'),
})

Preset Config Details

Performance Preset

Suitable for large projects or CI environments, prioritising linting speed.

Quality Preset

Suitable for small projects or dev environments, prioritising code quality.

Balanced Preset

Default recommended config, balancing performance and quality.

CI Preset

Optimised for continuous integration environments.

Dev Preset

Dev environment-friendly config.

Library Preset

Suitable for open source libraries or component libraries.

Uniapp Config

// eslint.config.mjs
import eslint10 from '@truenine/eslint10-config'

export default eslint10({
  vue: true,
  uniapp: true,
})

Performance Optimisation Tips

  1. Enable Caching: Add caching parameters in package.json scripts.
  2. Use Appropriate Presets: Choose the most suitable preset based on environment.
  3. Configure Ignore Patterns: Ensure files not needing linting (e.g., dist, build, node_modules) are ignored.
  4. Progressive Checking: For large projects, enable progressive checking feature.