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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@noaignite/style-guide

v0.1.1

Published

Style Guide - Configuration files for eslint, prettier & typescript by NoA Ignite.

Readme

@noaignite/style-guide

Style Guide - Configuration files for eslint, prettier & typescript by NoA Ignite.

Installation

Style Guide is available as an npm package.

// with pnpm
pnpm add @noaignite/style-guide

// with yarn
yarn add @noaignite/style-guide

// with npm
npm install @noaignite/style-guide

Usage

ESLint Configuration

The package provides several ESLint configurations that you can extend in your project:

// eslint.config.js
import baseConfig from '@noaignite/style-guide/eslint/base'

export default [
  ...baseConfig,
  // Your custom rules
]

Available configurations:

  • @noaignite/style-guide/eslint/base - Base configuration
  • @noaignite/style-guide/eslint/react - For React projects
  • @noaignite/style-guide/eslint/next - For Next.js projects

Composing Custom Rule Sets

You can also compose your own configuration by importing specific rule sets:

// eslint.config.js
import ignoresConfig from '@noaignite/style-guide/eslint/rules/ignores'
import javascriptConfig from '@noaignite/style-guide/eslint/rules/javascript'
import prettierConfig from '@noaignite/style-guide/eslint/rules/prettier'
import importConfig from '@noaignite/style-guide/eslint/rules/import'
import typescriptConfig from '@noaignite/style-guide/eslint/rules/typescript'

// Only include the rule sets you need
export default [
  ...ignoresConfig,
  ...javascriptConfig,
  ...prettierConfig,
  ...typescriptConfig,
  ...importConfig,
  // Your custom rules
]

Available rule sets:

  • @noaignite/style-guide/eslint/rules/best-practice - ESLint best practice rules
  • @noaignite/style-guide/eslint/rules/comments - ESLint comments rules
  • @noaignite/style-guide/eslint/rules/es6 - ESLint ES6 rules
  • @noaignite/style-guide/eslint/rules/ignores - ESLint ignores rules
  • @noaignite/style-guide/eslint/rules/import - ESLint import rules
  • @noaignite/style-guide/eslint/rules/javascript - ESLint JavaScript rules
  • @noaignite/style-guide/eslint/rules/next - Next.js specific rules
  • @noaignite/style-guide/eslint/rules/possible-errors - ESLint possible errors rules
  • @noaignite/style-guide/eslint/rules/prettier - ESLint Prettier integration rules
  • @noaignite/style-guide/eslint/rules/react - ESLint React specific rules
  • @noaignite/style-guide/eslint/rules/stylistic - ESLint stylistic rules
  • @noaignite/style-guide/eslint/rules/turbo - Turborepo specific rules
  • @noaignite/style-guide/eslint/rules/typescript - ESLint TypeScript rules
  • @noaignite/style-guide/eslint/rules/unicorn - ESLint Unicorn rules
  • @noaignite/style-guide/eslint/rules/vitest - Vitest specific rules

Prettier Configuration

The package provides several Prettier configurations that you can extend in your project:

// prettier.config.js
import baseConfig from '@noaignite/style-guide/prettier/base'

export default {
  ...baseConfig,
  // Your custom rules
}

Available configurations:

  • @noaignite/style-guide/prettier/base - Base configuration for Prettier projects
  • @noaignite/style-guide/prettier/tailwind - Configuration for TailwindCss projects

TypeScript Configuration

The package provides several TypeScript configurations that you can extend in your project:

// tsconfig.json
{
  "extends": "@noaignite/style-guide/typescript/base"
}

Available configurations:

  • @noaignite/style-guide/typescript/base - Base configuration for TypeScript projects
  • @noaignite/style-guide/typescript/react - Configuration for React projects
  • @noaignite/style-guide/typescript/next - Configuration for Next.js projects

Each configuration includes sensible defaults for different project types. The base configuration includes settings like strict type checking, module resolution settings, and other common TypeScript options.

Documentation

Visit https://noaignite.dev to view the full documentation.