aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-19 14:41:06 +0300
committerValentin Popov <info@valentineus.link>2020-02-19 14:41:06 +0300
commit3e8a92c1765281d590fb424955636351551bd6b7 (patch)
tree55d04c9ce99f77f3909c513349d1c8d00fe6ee6d
parent0a76f652a9f8d54c48b969930e50f465d1761adc (diff)
downloadeslint-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.json6
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": [