aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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": {}
+ }
+ ]
+}