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'}], }, };