From 15ca34221875210c52a98dbea3c1173c70081736 Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Sat, 16 Apr 2022 11:32:47 +0530 Subject: [PATCH] chore: added .eslintrc.json --- .eslintrc.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..cc9d5cf --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,11 @@ +{ + "env": { + "browser": true, + "es2021": true, + "node": true + }, + "extends": ["eslint:recommended"], + "rules": { + "no-mixed-spaces-and-tabs": "off" + } +}