From 4352dc1bc278922fcd5b7b63deed1c9b3a9e42cb Mon Sep 17 00:00:00 2001 From: Lydia Zakharova Date: Mon, 25 Sep 2023 14:32:37 +0300 Subject: [PATCH] =?UTF-8?q?fix(vanilla):=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D1=82=20=D0=B8=D0=B3=D0=BD=D0=BE=D1=80=20"=D1=81=D1=80?= =?UTF-8?q?=D0=B5=D0=B4=D0=B8=D0=BD=D0=BD=D1=8B=D1=85=20=D1=80=D0=B0=D0=B7?= =?UTF-8?q?=D1=80=D0=B5=D1=88=D0=B5=D0=BD=D0=B8=D0=B9"=20(#97)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 5 +++++ vanilla.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 38645fb..a136f06 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +10.0.1 / 2023-09-19 +================== + + * Дополнили настройку `check-file/filename-naming-convention` в конфигурационном файле `vanilla` + 10.0.0 / 2023-09-05 ================== diff --git a/vanilla.js b/vanilla.js index 6c7fb12..e8871c2 100644 --- a/vanilla.js +++ b/vanilla.js @@ -50,7 +50,7 @@ module.exports = { 'space-infix-ops': 'error', 'brace-style': ['error'], 'space-in-parens': ['error'], - 'check-file/filename-naming-convention': ['error', {'**/*.{jsx,tsx,js,ts}': 'KEBAB_CASE'}], + 'check-file/filename-naming-convention': ['error', {'**/*.{jsx,tsx,js,ts}': 'KEBAB_CASE'}, {'ignoreMiddleExtensions': true}], 'check-file/folder-naming-convention': ['error', {'**/': 'KEBAB_CASE'}], }, };