From 649c1ed37ac74765fb7572fa3f703c94827042f4 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Tue, 4 Jan 2022 22:16:09 +0530 Subject: New configurations based on review comments (WIP) Signed-off-by: Vijay A --- scripts/.eslintrc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/.eslintrc.json (limited to 'scripts/.eslintrc.json') diff --git a/scripts/.eslintrc.json b/scripts/.eslintrc.json new file mode 100644 index 0000000..6018373 --- /dev/null +++ b/scripts/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "env": { + "node": true + }, + "rules": { + "no-process-env": 0, + "import/no-extraneous-dependencies": [ + "error", + { + // "devDependencies": true, + // "optionalDependencies": true, + // "peerDependencies": true, + "bundledDependencies": true + } + ] + } +} -- cgit v1.2.3-54-g00ecf