diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/unicorn/default.json | 7 |
2 files changed, 8 insertions, 1 deletions
@@ -479,7 +479,7 @@ - [ ] "escape-case" - [ ] "expiring-todo-comments" - [ ] "explicit-length-check" -- [ ] "filename-case" +- [X] "filename-case" - [ ] "import-index" - [ ] "new-for-builtins" - [ ] "no-abusive-eslint-disable" diff --git a/src/rules/unicorn/default.json b/src/rules/unicorn/default.json index a6568f7..2530a4a 100644 --- a/src/rules/unicorn/default.json +++ b/src/rules/unicorn/default.json @@ -1,4 +1,11 @@ { + "unicorn/filename-case": [ + "error", + { + "kebabCase": true, + "pascalCase": true + } + ], "unicorn/prevent-abbreviations": [ "error", { |