This repository is the home of Datarockets' style guide, which includes configs for popular linting and styling tools.
The following configs are available, and are designed to be used together.
Please read our contributing guide before creating a pull request.
All of our configs are contained in one package, @datarockets/style-guide
. To
install:
npm i -D @datarockets/style-guide
Some of our configs require peer dependencies. Install them depending on which configs you use:
# If you use @datarockets/style-guide/prettier
npm i -D prettier
# If you use @datarockets/style-guide/eslint
npm i -D eslint
# If you use Next.js and @datarockets/style-guide/eslint/next
npm i -D @next/eslint-plugin-next
# If you use @datarockets/style-guide/typescript
npm i -D typescript
Note: Prettier is a peer-dependency of this package, and should be installed at the root of your project.
To use the shared Prettier config, set the following in package.json
.
{
"prettier": "@datarockets/style-guide/prettier"
}
If you need to override the configuration (see: https://prettier.io/docs/en/configuration#sharing-configurations):
import datarocketsPrettierConfig from '@datarockets/style-guide/prettier';
export default {
...datarocketsPrettierConfig,
semi: false,
};
Note: ESLint is a peer-dependency of this package, and should be installed at the root of your project.
See: https://eslint.org/docs/user-guide/getting-started#installation-and-usage
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
:
@datarockets/style-guide/eslint/browser
@datarockets/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:
@datarockets/style-guide/eslint/jest
@datarockets/style-guide/eslint/jest-react
(includes rules for@testing-library/react
)@datarockets/style-guide/eslint/next
(requires@next/eslint-plugin-next
to be installed at the same version asnext
)- extends
@datarockets/style-guide/eslint/react
- extends
@datarockets/style-guide/eslint/playwright
@datarockets/style-guide/eslint/react
@datarockets/style-guide/eslint/storybook
@datarockets/style-guide/eslint/typescript
(requirestypescript
to be installed)
- eslint-plugin-eslint-comments
- eslint-plugin-import
- eslint-plugin-simple-import-sort
- eslint-plugin-unicorn
- eslint-plugin-prettier
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).
Note: you might need to clear ESLint cache for the first usage.
Here is a recommened approach of using ESLing configs in Next.js projects.
.eslintrc.js
:
module.exports = {
root: true,
ignorePatterns: [
'node_modules/',
'/public',
'/playwright-report',
'__screenshots__/',
// Specify the needed dot folders via negated pattern to make IDE ESLint
// plugin to include it.
'!/.storybook',
// Any other directories which makes sense to ignore to improve ESLint
// performance. Note: ESLint ignores dot directories (e.g. .git) by default.
],
extends: [
require.resolve('@datarockets/style-guide/eslint/node'),
require.resolve('@datarockets/style-guide/eslint/browser'),
require.resolve('@datarockets/style-guide/eslint/typescript'),
require.resolve('@datarockets/style-guide/eslint/next'),
],
overrides: [
// Unit tests (Jest)
{
files: [
'src/**/__tests__/**/*.{js,jsx,ts,tsx}',
'src/**/?(*.)+(spec|test).{js,jsx,ts,tsx}',
'jest.setup.{js,ts}',
],
extends: [
require.resolve('@datarockets/style-guide/eslint/jest'),
require.resolve('@datarockets/style-guide/eslint/jest-react'),
],
settings: {
jest: {
version: require('jest/package.json').version,
},
},
},
// E2E tests (Playwright)
{
files: ['tests/**/?(*.)+(spec|test).{js,jsx,ts,tsx}'],
extends: [require.resolve('@datarockets/style-guide/eslint/playwright')],
},
// Storybook
{
files: ['*.stories.{js,jsx,ts,tsx}'],
extends: [require.resolve('@datarockets/style-guide/eslint/storybook')],
},
],
};
next.config.js
:
/** @type {NextConfig} */
const nextConfig = {
eslint: {
dirs: [
// By default, Next.js lints only `app`, `pages`, `components`, `lib`, `src`
// directories. Here we overwrite it to lint all files in the project.
'.',
],
},
};
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('@datarockets/style-guide/eslint/node')],
overrides: [
{
files: [
'**/__tests__/**/*.{js,jsx,ts,tsx}',
'**/?(*.)+(spec|test).{js,jsx,ts,tsx}',
],
extends: [require.resolve('@datarockets/style-guide/eslint/jest')],
},
],
};
There are some rules/settings that you probably want to configure manually to fit your project needs.
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.
For example,
module.exports = {
root: true,
extends: [require.resolve('@datarockets/style-guide/eslint/react')],
settings: {
'jsx-a11y': {
components: {
Article: 'article',
Button: 'button',
Image: 'img',
Input: 'input',
Link: 'a',
Video: 'video',
// ...
},
},
},
};
By default, it's configured to ensure that all files are in kebab-case
. If
your project already have a convention for file names, you can configure this
rule to fit the convention (see Documentation):
module.exports = {
rules: {
// Your project uses both `camelCase` and `PascalCase`
'unicorn/filename-case': [
'error',
{
cases: {
camelCase: true,
pascalCase: true,
},
},
],
},
};
We enforce a certain import order by default. For example:
// Side effects
import './global.css';
// Node.js builtins prefixed with `node:`.
import path from 'node:path';
// External packages
import Image from 'next/image';
// 1. Absolute imports and other imports such as Vue-style `@/foo`.
// 2. Relative imports.
import { SomeComponent } from '@/components';
import { parent } from '../parent';
import { sibling } from './sibling';
You can configure it by modifying simple-import-sort/imports
rule (see Documentation):
module.exports = {
rules: {
'simple-import-sort/imports': [
'error',
{
groups: [
// Type imports.
['\\u0000$'],
// Side effect imports.
['^\\u0000'],
// Node.js builtins prefixed with `node:`.
['^node:'],
// Packages.
['^@?\\w'],
// 1. Absolute imports and other imports such as Vue-style `@/foo`.
// 2. Relative imports.
['^', '^\\.'],
],
},
],
},
};
Sometimes you need to debug ESLint to understand what actually happens and why something doesn't work.
To output ESLint debug logs:
DEBUG=eslint* npx eslint .
# For Next.js projects
DEBUG=eslint* npx next lint
To show final ESLint config:
npx eslint --print-config <some-file>
We provide a base config for TypeScript which contains some defaults we usually use.
To use it, just extend it in your tsconfig.json
:
{
"extends": "@datarockets/style-guide/typescript"
}
The base config isn't intented to be used as a complete one so you might need
to add more settings in your tsconfig.json
. For example:
{
"extends": "@datarockets/style-guide/typescript",
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".storybook/**/*"
],
"exclude": ["node_modules"]
}
Inspired by https://github.com/vercel/style-guide.