From e9daf21545c3047fa754b8151516e51d92ae6cd6 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Sun, 23 Aug 2020 15:05:07 +0200 Subject: [PATCH] eslint --- .eslintrc.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..f6bd46b --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,19 @@ +{ + "env": { + "browser": true, + "es2020": true + }, + "extends": [ + "airbnb-base" + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 2020, + "sourceType": "module" + }, + "plugins": [ + "@typescript-eslint" + ], + "rules": { + } +}