From 16df945c919cf291316569653c75d964dd67b2e4 Mon Sep 17 00:00:00 2001 From: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com> Date: Thu, 20 Jul 2023 04:49:05 -0400 Subject: [PATCH] remove require-default-prop from eslint typescript makes this useless --- photon-client/.eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/photon-client/.eslintrc.json b/photon-client/.eslintrc.json index 3d22688745..3b0ca45bb9 100644 --- a/photon-client/.eslintrc.json +++ b/photon-client/.eslintrc.json @@ -12,6 +12,7 @@ "eol-last": "error", "object-curly-spacing": ["error", "always"], "quote-props": ["error", "as-needed"], - "no-case-declarations": "off" + "no-case-declarations": "off", + "vue/require-default-prop": "off" } }