diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-19 14:41:06 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-19 14:41:06 +0300 |
commit | 3e8a92c1765281d590fb424955636351551bd6b7 (patch) | |
tree | 55d04c9ce99f77f3909c513349d1c8d00fe6ee6d | |
parent | 0a76f652a9f8d54c48b969930e50f465d1761adc (diff) | |
download | eslint-config-3e8a92c1765281d590fb424955636351551bd6b7.tar.xz eslint-config-3e8a92c1765281d590fb424955636351551bd6b7.zip |
fix(unicorn): filename-case
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | src/rules/unicorn/default.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rules/unicorn/default.json b/src/rules/unicorn/default.json index fd05b65..7a7dc1b 100644 --- a/src/rules/unicorn/default.json +++ b/src/rules/unicorn/default.json @@ -2,8 +2,10 @@ "unicorn/filename-case": [ "error", { - "kebabCase": true, - "pascalCase": true + "cases": { + "kebabCase": true, + "pascalCase": true + } } ], "unicorn/no-console-spaces": [ |