diff options
Diffstat (limited to 'src/rules/unicorn/default.json')
-rw-r--r-- | src/rules/unicorn/default.json | 18 |
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": {} + } + ] +} |