Skip to content

Commit

Permalink
fix(vanilla): Добавит игнор "срединных разрешений" (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahonta authored Sep 25, 2023
1 parent 14c520d commit 4352dc1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
10.0.1 / 2023-09-19
==================

* Дополнили настройку `check-file/filename-naming-convention` в конфигурационном файле `vanilla`

10.0.0 / 2023-09-05
==================

Expand Down
2 changes: 1 addition & 1 deletion vanilla.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'}],
},
};

0 comments on commit 4352dc1

Please sign in to comment.