From c2a768efc9a0853ebac15c06652c11e6aed846f9 Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Mon, 6 Sep 2021 12:42:25 -0500 Subject: [PATCH] added a couple eslint rules back --- .eslintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 37be63d..523c64c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -14,6 +14,8 @@ "rules": { "@typescript-eslint/triple-slash-reference": "off", "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/member-ordering": "warn", + "@typescript-eslint/explicit-function-return-type": "error", "prettier/prettier": "warn" } }