eslint-config-peerigon
Peerigon coding rules as ESLint config.
![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)
Motivation
Linting and formatting rules are always a balance between
- ease of reading
- ease of refactoring
- ease of writing.
We think that
- code is read more often than refactored
- and refactored more often than written from scratch.
Our linting rules have been designed with these assumptions in mind.
Features
Atomic changes
Our formatting rules have been chosen carefully so that a change of a file is as atomic as possible. This makes it easier to review pull requests because there are no meaningless changes anymore.
Example: I want to change a variable from let
to const
.
// Bad coding style because useless whitespace changes were necessary
-let a = 1,
+let a = 1,
- bbb = 2,
+ cc = 3;
- cc = 3;
+const bbb = 3;
// Good coding style because only the relevant parts need to be changed
let a = 1;
-let bb = 2;
+const bb = 2;
let ccc = 3;
This is also the reason why we prefer dangling commas for multiline arrays, objects and arguments although they look very unfamiliar on first sight (see discussion).
Consistent formatting
For the purpose of atomic changes, our rules are intentionally strict about formatting which are usually autofixable. You should use an editor configuration where you can apply these autofixes on demand (for instance when saving the file).
We recommend combining these linting rules with Prettier (see below). There's also a recommended configuration for VSCode.
Code smells as a warning
Developers take shortcuts. And that's ok because at the end of the day we have to deliver software within fixed time frames and budgets. Sometimes it's also because we don't know of a better alternative. We call these shortcuts "code smells" and our linting rules will complain about them with a warning.
This means that this code is potentially problematic, but you don't have to fix it right away. You should keep the warning and come back later to refactor it (e.g. during a refactoring sprint). The amount of warnings is also a good indicator for technical debt.
For example, our linting rules will complain about:
- too many dependencies in a file because it's usually a sign that you should break the module into more granular pieces
- high cyclomatic complexity because it's hard for humans to anticipate all possibilities.
process.exit(1)
because throwing an error is often the better alternative- ...
We know that for every warning there is a legitimate use case:
- Application entry files usually have a lot of imports and almost no actual code.
- Unknown/unreliable data sources often cause unavoidable cyclomatic complexity.
- Within
process.on("uncaughtException", ...
maybe we don't want to print the regular stack trace.
If you think that there is a good reason for deviating from the standard path, disable the warning and put an explanation above that comment why it's ok to disable the rule in that case, like:
function validate() {
}
Disabling rules
Try to disable as less rules as possible. In most cases it's best to just write
where [rule-code]
is the code that is displayed along the error message. Disabling the next line is usually better because it resists Prettier reformatting.
Sometimes it makes sense to disable a rule within a specifc file. In that case you can put the following snippet at the beginning of the file:
In rare cases, it makes sense to disable a rule for the whole project. For instance, if you work with JSON data coming from a foreign API that uses underscore property names.
If you don't agree with a rule, please do not just disable the rule. Often there are good reasons and the current setting is the result of years of experience. It's better to create an issue here to start a discussion about the pros and cons of a rule.
Different styles
We acknowledge that there are certain rules where there are no actual pros and cons or where there is no clear winner. You just have to decide for one style and stick with it. We also know that some rules make sense in one project, but don't make sense in another project. That's why we also provide a list of accepted custom styles (see also this discussion) which you can pick.
Provided configs
Base rules for every project. You should always add these rules.
npm i eslint eslint-config-peerigon --save-dev
These rules assume a modern project with full ES2015 support, including ES modules. For specific environments like Node.js or old JS engines, see below. The base rules do not define an env
, so you might want to do that for yourself to enable specific globals.
Add an .eslintrc.json
to the project's root folder:
{
"extends": [
"peerigon",
"prettier"
],
"env": {
"node": true
},
"root": true
}
In your package.json
, add a test:lint
script and run it as posttest
:
{
"scripts": {
"test:lint": "eslint ./src ./test",
"posttest": "npm run test:lint"
}
}
The base rules use the eslint-plugin-import
to resolve imports. Although it's possible to define custom resolvers, it's highly discouraged to deviate from the common Node/webpack resolving algorithm. Other tools like linters and intellisense don't work reliably when you change the resolver.
Special rules for Node.js >= 8.0.0 environments:
{
"extends": [
"peerigon",
"peerigon/node",
"prettier"
]
}
Important: Requires eslint-plugin-react
, eslint-plugin-jsx-a11y
and eslint-plugin-react-hooks
as project dependency.
npm i eslint-plugin-react eslint-plugin-jsx-a11y eslint-plugin-react-hooks --save-dev
Rules for React development, including accessibility rules.
These rules are also applicable in other JSX environments, like Preact:
{
"extends": [
"peerigon",
"peerigon/react",
"prettier",
"prettier/react",
],
"root": true
}
We recommend using peerigon/styles/react-jsx-no-literals
if you're using i18n in your project.
Important: Requires @typescript-eslint/eslint-plugin
, @typescript-eslint/parser
and eslint-import-resolver-typescript
as project dependency.
npm i @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-import-resolver-typescript --save-dev
Rules for TypeScript.
{
"extends": [
"peerigon",
"peerigon/typescript",
"peerigon/styles/prefer-arrow",
"prettier",
"prettier/typescript",
],
"root": true
}
You need to add --ext js,ts,tsx
to the test:lint
script:
{
"scripts": {
"test:lint": "eslint ./src ./test --ext js,ts,tsx"
}
}
We recommend using peerigon/styles/prefer-arrow
because arrow functions (or function expressions in general) can leverage TypeScript's contextual typing.
Important: Requires babel-eslint
and eslint-plugin-flowtype
as project dependency.
npm i babel-eslint eslint-plugin-flowtype --save-dev
Rules for Flowtype.
{
"extends": [
"peerigon",
"peerigon/flowtype",
"prettier",
"prettier/flowtype",
],
"root": true
}
Special rules for older projects:
{
"extends": [
"peerigon",
"peerigon/es5"
],
"root": true
}
Styles
The following rules enable specific writing styles. Use them as you prefer.
Important: Requires eslint-plugin-prefer-arrow
as project dependency.
npm i eslint-plugin-prefer-arrow --save-dev
Enforces arrow function expressions instead of function declarations (see #23).
Regular functions are still allowed as methods in objects or classes.
"extends": [
"peerigon",
"peerigon/styles/prefer-arrow"
],
Forbids usage of export default
. When using default exports, it becomes harder to name classes or functions consistently throughout the codebase since every module can pick its own name for the imported thing. Nicholas C. Zakas, the creator of ESLint, wrote an article with more compelling arguments why he stopped using export default
.
"extends": [
"peerigon",
"peerigon/styles/no-default-export"
],
Please note: This rule is disabled in .jsx
and .tsx
files because React components are usually exported via export default
. React.lazy
even expects the lazy loaded component to be exported as default
.
Important: Requires eslint-plugin-no-null
as project dependency.
npm i eslint-plugin-no-null --save-dev
Forbids the usage of null
. In a codebase it's often better to use a single non-value to represent the absence of a value. With the rise of default parameters and destructuring defaults, JavaScript developed a clear tendency towards undefined
. This issue summarizes the arguments (and trade-offs) of null vs. undefined.
"extends": [
"peerigon",
"peerigon/styles/no-null"
],
Please note: If you use this rule, you will probably still need a single null
value which you can refer to whenever you need to use null
because of third-party code:
export const NULL = null;
Important: Use it in combination with peerigon/typescript
.
Prefer interface
over type
.
"extends": [
"peerigon",
"peerigon/typescript",
"peerigon/styles/prefer-interface"
],
Important: Use it in combination with peerigon/react
.
Depending on the way you write your components, it might be ok to create functions during render()
. Use it if you're not using things like React.memo()
or shouldComponentUpdate
a lot.
"extends": [
"peerigon",
"peerigon/react",
"peerigon/styles/react-jsx-allow-bind"
],
Important: Use it in combination with peerigon/react
.
Use this style if you're using i18n. It prevents people from putting raw strings in components.
"extends": [
"peerigon",
"peerigon/react",
"peerigon/styles/react-jsx-no-literals"
],
It disallows this:
const Hello = <div>test</div>;
As an escape hatch, this is still allowed:
const Hello = <div>{'test'}</div>;
Prettier
There is a Prettier config in this repository that corresponds to our linting rules as much as possible. Add a .prettierrc
file to your repository with the following content:
"eslint-config-peerigon/prettier"
In order to avoid conflicts between Prettier and our rules, you should always add prettier rules at the end of extends
. For example, in a TypeScript + React project you would use the following configuration:
{
"extends": [
"peerigon",
"peerigon/typescript",
"peerigon/react",
"prettier",
"prettier/typescript",
"prettier/react"
],
"root": true,
};
This module already lists eslint-config-prettier as dependency which is why you don't have to install it manually.
VSCode
This is our recommended VSCode configuration using the Prettier extension. Adjust it to the needs of your particular project:
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
License
Unlicense
![](https://assets.peerigon.com/peerigon/logo/peerigon-logo-flat-spinat.png)