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

eslint-config-norton

v5.0.2

Published

ESLint shareable config for the Norton JavaScript style guide

Downloads

437

Readme

eslint-config-norton

eslint-config-norton version

The official W. W. Norton ESLint shareable config, based on Airbnb but with support for TypeScript.

Installation

It is highly recommend to use npm v7+, which will install peer dependencies for you. Earlier versions of npm will require you to install peer dependencies yourself.

npm install eslint-config-norton --save-dev

Usage

The default config provides rules for JavaScript and TypeScript.

extends: [
  'norton',
],

To also use React rules, extend norton/react instead.

extends: [
  'norton/react',
],

TypeScript support

Both the default entrypoint and the React entrypoint provide support for TypeScript through overrides that use both the officially recommended config and eslint-config-airbnb-typescript. This means that only .ts(x)? files will use the TypeScript rules, while .js(x)? files will use the JavaScript rules, allowing for mixed TypeScript/JavaScript codebases. This is helpful when you want to lint your entire TypeScript codebase but some files have to be JavaScript, such as configs (e.g., docusaurus.config.js, .stylelintrc.js).

The plugin:@typescript-eslint/recommended config is already enabled so you shouldn't include it, but plugin:@typescript-eslint/recommended-requiring-type-checking is not*. It is highly recommended that you turn it on for a more strict set of rules. This should be done by adding an override for TypeScript files to ensure that it's not applied to JavaScript files.

extends: [
  'norton', // or 'norton/react'
],
overrides: [
  {
    files: ['.ts'], // or ['.ts', '.tsx'] if you're using React
    extends: [
      'plugin:@typescript-eslint/recommended-requiring-type-checking',
    ],
  },
],
parserOptions: {
  project: './tsconfig.json', // or wherever your tsconfig is located
},

* This is not enabled by default because it would not be possible to opt out of it and because it adds non-negligible overhead. @typescript/plugin-eslint specifically recommends the following:

Pro Tip: For larger codebases you may want to consider splitting our linting into two separate stages: 1. fast feedback rules which operate purely based on syntax (no type-checking), 2. rules which are based on semantics (type-checking).

Rules

This configuration extends eslint-config-airbnb, the officially recommended configs, and the unofficial eslint-config-airbnb-typescript (for TypeScript rules), overriding only a small handful of rules from those configs.

Tabs instead of spaces

This is done purely to promote more accessible and inclusive code. Spaces do not allow individual developers to set the visual appearance of indents in their IDE, whereas tabs do.

See https://alexandersandberg.com/tabs-for-accessibility/ for further explanation of why this is helpful for code accessibility.

Related rules

Avoid default exports (TypeScript only)

There are a handful of reasons for this, all of which are explained quite well in https://basarat.gitbook.io/typescript/main-1/defaultisbad.

Note: export default is preferred in JavaScript. This is the exact opposite of the TypeScript rule.

// bad
export default class Foo {}

// good
export class Foo {}

Related rules

Allow sequential single-line class fields (TypeScript only)

Since TypeScript supports class field declarations, it can be helpful to group single-line declarations. Airbnb doesn't allow this because it doesn't support class field declarations, so we've overridden it just for TypeScript.

class Foo {
  // allowed: no line between single-line members
  #foo = 'foo';
  #bar = 'bar';

  // not allowed: no line between multi-line members
  get foo() {
    return this.#foo;
  } // <- no line between members
  get (bar) {
    return this.#bar;
  }
}

Related rules

Prefer static class fields (TypeScript+React only)

TypeScript supports public class fields, so prefer using them for static fields. Airbnb intends to use this rule when it's supported.

class Foo extends React.Component<FooProps> {
  // good
  static defaultProps = defaultProps;
}

// bad
Foo.defaultProps = defaultProps;

Related rules

Adding support for {x}

This config is designed to provide a good base for Airbnb-based JavaScript and TypeScript. Any additional functionality or overrides should be done in your own config.

For instance, add support for comments, Jest and Prettier:

module.exports = {
  extends: [
    'norton/react',
    'plugin:eslint-comments/recommended',
    'plugin:jest/recommended',
    "prettier",
    "prettier/react",
    "plugin:prettier/recommended",
  ],
};