aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-19 13:05:05 +0300
committerValentin Popov <info@valentineus.link>2020-02-19 13:05:05 +0300
commit2131004cc8caa193e7f2503c0513a32c9fae14ff (patch)
treedea272d0df4f6de2b342a640dc4409c24d681d70 /src
parent93b869a9634cdde43a2a643cd441ce87b04a68d9 (diff)
downloadeslint-config-2131004cc8caa193e7f2503c0513a32c9fae14ff.tar.xz
eslint-config-2131004cc8caa193e7f2503c0513a32c9fae14ff.zip
feat(unicron): prevent-abbreviations
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r--src/rules/unicorn/default.json18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/rules/unicorn/default.json b/src/rules/unicorn/default.json
index 0967ef4..a6568f7 100644
--- a/src/rules/unicorn/default.json
+++ b/src/rules/unicorn/default.json
@@ -1 +1,17 @@
-{}
+{
+ "unicorn/prevent-abbreviations": [
+ "error",
+ {
+ "checkDefaultAndNamespaceImports": "internal",
+ "checkFilenames": true,
+ "checkProperties": true,
+ "checkShorthandImports": "internal",
+ "checkShorthandProperties": true,
+ "checkVariables": true,
+ "extendDefaultReplacements": true,
+ "extendDefaultWhitelist": true,
+ "replacements": {},
+ "whitelist": {}
+ }
+ ]
+}