eslint-config-norton
v5.0.2
Published
ESLint shareable config for the Norton JavaScript style guide
Downloads
228
Readme
eslint-config-norton
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",
],
};