From ef2a6d0cd0419248777eed84dc755bb6a439f6ba Mon Sep 17 00:00:00 2001 From: Oguz Date: Thu, 16 Apr 2020 09:51:13 +0200 Subject: [PATCH] chore(project): declare Promise as a global variable for linting --- .eslintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 1bcb1f56f5..f8ce66a665 100644 --- a/.eslintrc +++ b/.eslintrc @@ -2,5 +2,8 @@ "extends": "plugin:bpmn-io/es6", "env": { "browser": true + }, + "globals": { + "Promise": true } -} \ No newline at end of file +}