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

@tronite/style-guide

v0.0.13

Published

Code style guide for Tronite applications

Downloads

36

Readme

This package provides flexible ESLint, Prettier, and TypeScript configurations for use in both browser and Node.js projects.

Installation

To install this package, run the following command:

# If you use npm
npm install --save-dev @tronite/style-guide

# If you use yarn
yarn add --dev @tronite/style-guide

# If you use pnpm
pnpm add --save-dev @tronite/style-guide

ESLint

This ESLint config is designed to be composable.

The following base configs are available. You can use one or both of these configs, but they should always be first in extends:

  • @tronite/style-guide/eslint/browser
  • @tronite/style-guide/eslint/node

Note that you can scope configs, so that configs only target specific files. For more information, see: Scoped configuration with overrides.

The following additional configs are available:

  • @tronite/style-guide/eslint/next (requires @next/eslint-plugin-next to be installed at the same version as next)
  • @tronite/style-guide/eslint/react
  • @tronite/style-guide/eslint/typescript (requires typescript to be installed and additional configuration)
  • @tronite/style-guide/eslint/vitest

You'll need to use require.resolve to provide ESLint with absolute paths, due to an issue around ESLint config resolution (see eslint/eslint#9188).

For example, use the shared ESLint config(s) in a Next.js project, set the following in .eslintrc.js.

module.exports = {
  extends: [
    require.resolve('@tronite/style-guide/eslint/browser'),
    require.resolve('@tronite/style-guide/eslint/react'),
    require.resolve('@tronite/style-guide/eslint/next'),
  ],
};

Configuring ESLint for TypeScript

Some of the rules enabled in the TypeScript config require additional type information, you'll need to provide the path to your tsconfig.json.

For more information, see: https://typescript-eslint.io/docs/linting/type-linting

const { resolve } = require('path');

const project = resolve(__dirname, 'tsconfig.json');

module.exports = {
  root: true,
  extends: [
    require.resolve('@tronite/style-guide/eslint/node'),
    require.resolve('@tronite/style-guide/eslint/typescript'),
  ],
  parserOptions: {
    project,
  },
  settings: {
    'import/resolver': {
      typescript: {
        project,
      },
    },
  },
};

Configuring custom components for jsx-a11y

It's common practice for React apps to have shared components like Button, which wrap native elements. You can pass this information along to jsx-a11y via the components setting.

The below list is not exhaustive.

module.exports = {
  root: true,
  extends: [require.resolve('@tronite/style-guide/eslint/react')],
  settings: {
    'jsx-a11y': {
      components: {
        Article: 'article',
        Button: 'button',
        Image: 'img',
        Input: 'input',
        Link: 'a',
        Video: 'video',
      },
    },
  },
};

Scoped configuration with overrides

ESLint configs can be scoped to include/exclude specific paths. This ensures that rules don't "leak" into places where those rules don't apply.

In this example, Jest rules are only being applied to files matching Jest's default test match pattern.

module.exports = {
  extends: [require.resolve('@tronite/style-guide/eslint/node')],
  overrides: [
    {
      files: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
      extends: [require.resolve('@tronite/style-guide/eslint/jest')],
    },
  ],
};

A note on file extensions

By default, all TypeScript rules are scoped to files ending with .ts and .tsx.

However, when using overrides, file extensions must be included or ESLint will only include .js files.

module.exports = {
  overrides: [{ files: [`directory/**/*.[jt]s?(x)`], rules: { 'my-rule': 'off' } }],
};

Prettier

This package provides a single Prettier configuration:

  • @tronite/style-guide/prettier

Prettier is a peer dependency of this package, so you will need to install it separately:

# If you use npm
npm install --save-dev prettier

# If you use yarn
yarn add --dev prettier

# If you use pnpm
pnpm add --save-dev prettier

To use this configuration, create a .prettierrc.js file in the root of your project and add the following:

module.exports = require('@tronite/style-guide/prettier');

Alternatively, you can add the following to your package.json file:

{
  "prettier": "@tronite/style-guide/prettier"
}

TypeScript

This package provides the following TypeScript configurations:

  • @tronite/style-guide/typescript/esm - for ESM projects
  • @tronite/style-guide/typescript/next - for Next.js projects
  • @tronite/style-guide/typescript/node - for Node.js
  • @tronite/style-guide/typescript/react.es5 - for React projects that target ES5
  • @tronite/style-guide/typescript/react.es2020 - for React projects that target ES2020

TypeScript is a peer dependency of this package, so you will need to install it separately:

# If you use npm
npm install --save-dev typescript

# If you use yarn
yarn add --dev typescript

# If you use pnpm
pnpm add --save-dev typescript

To use one of these configurations, create a tsconfig.json file in the root of your project and add the following:

{
  "extends": "@tronite/style-guide/typescript/<config>",
  "include": ...,
  "exclude": ...
}

To use one of these configurations, replace <config> with the desired configuration name, such as next. Don't forget to update the include and exclude arrays with the appropriate source file paths. Each configuration has its own default include and exclude paths, so make sure to extend them from the chosen configuration.

Credits

This package was heavily inspired by @vercel/style-guide and as such, it uses the same license. See the LICENSE file for more information. Vercel's style guide was a little bit too opinionated for our needs, so we decided to create a more flexible alternative.