From f2ef0e32b01e9ef8e12bf19f7022c30c10cf3703 Mon Sep 17 00:00:00 2001 From: Rushi Vishavadia Date: Mon, 13 Nov 2023 14:49:45 +0530 Subject: [PATCH] Add .xo-config --- .xo-config.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .xo-config.json diff --git a/.xo-config.json b/.xo-config.json new file mode 100644 index 000000000..96cd13243 --- /dev/null +++ b/.xo-config.json @@ -0,0 +1,25 @@ +{ + "ignorePatterns": [ + "**/*.test.js*", + "**/*.test.ts*", + "**/test/**/*.*" + ], + "rules": { + "unicorn/prevent-abbreviations": [ + "error", + { + "replacements": { + "param": false, + "params": false, + "props": false, + "e": false, + "ref": false, + "def": false, + "pkg": false, + "args": false + } + } + ] + } +} +