Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
lesha1201 committed Dec 4, 2023
1 parent 6602684 commit 7c0c636
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The following configs are available, and are designed to be used together.

- [Prettier](#prettier)
- [ESLint](#eslint)
- [TypeScript](#typescript)
- [TypeScript](#typescript-1)

## Contributing

Expand Down Expand Up @@ -156,6 +156,9 @@ module.exports = {
'/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.
],
Expand Down Expand Up @@ -207,9 +210,6 @@ const nextConfig = {
// By default, Next.js lints only `app`, `pages`, `components`, `lib`, `src`
// directories. Here we overwrite it to lint all files in the project.
'.',
// [Optional] By default, ESLint ignores directories started with dot so
// we need to specify such directories explicitly.
'.storybook',
],
},
};
Expand Down Expand Up @@ -324,6 +324,8 @@ module.exports = {
'error',
{
groups: [
// Type imports.
['\\u0000$'],
// Side effect imports.
['^\\u0000'],
// Node.js builtins prefixed with `node:`.
Expand Down

0 comments on commit 7c0c636

Please sign in to comment.