From 276b60a3c37f4293c8c3200ce2b2b8ec2b893425 Mon Sep 17 00:00:00 2001 From: Michael Frank Date: Mon, 10 May 2021 19:03:38 +1200 Subject: [PATCH] .eslitrc.json: Added support for airbnb-base linting --- .eslintrc.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..bbf322d --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "extends": "airbnb-base", + "plugins": [ + "import" + ], + "parserOptions": { + "ecmaVersion": 12, + "sourceType": "module" + }, + "rules": { + } +}