From 93505de113f2739eaeef7c46889bb5c99ab1782d Mon Sep 17 00:00:00 2001 From: vbasiuk Date: Tue, 18 Jul 2023 12:13:54 +0300 Subject: [PATCH] leave sdk specific rules --- .eslintrc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.eslintrc b/.eslintrc index 2c5a1915..b983ac1d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,3 +1,11 @@ { - "extends": ["@iden3/eslint-config"] -} + "parserOptions": { + "project": ["tsconfig.json", "tsconfig.test.json"] + }, + "extends": ["@iden3/eslint-config"], + "rules": { + "@typescript-eslint/no-floating-promises": ["error"], + "@typescript-eslint/no-non-null-assertion": "off" + }, + "ignorePatterns": ["dist", "node_modules"] +} \ No newline at end of file