From 5ce06ff3851de17880dc44b79979b67e375dace5 Mon Sep 17 00:00:00 2001 From: Patryk Szwed Date: Wed, 27 Nov 2024 21:05:13 +0100 Subject: [PATCH 1/2] docs: flat config setup typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 291b828..3e41326 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ If you are using [flat config style](https://eslint.org/docs/latest/use/configur export default [ // ... { - // Inside your .eslintignore file + // Inside your flat config file ignores: ['!.storybook'], }, ] From 06ca9dca895d9dacd07392e858f7075c14c0e64c Mon Sep 17 00:00:00 2001 From: Patryk Szwed Date: Wed, 15 Jan 2025 12:04:39 +0100 Subject: [PATCH 2/2] docs: update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e41326..34a8541 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,12 @@ This allows for this plugin to also lint your configuration files inside the .st > For more info on why this line is required in the .eslintignore file, check this [ESLint documentation](https://eslint.org/docs/latest/use/configure/ignore-deprecated#:~:text=In%20addition%20to,contents%20are%20ignored). -If you are using [flat config style](https://eslint.org/docs/latest/use/configure/configuration-files-new), add this to your configuration file: +If you are using [flat config style](https://eslint.org/docs/latest/use/configure/configuration-files-new), add this to your configuration file instead: ```js export default [ // ... { - // Inside your flat config file ignores: ['!.storybook'], }, ]