From e4064b89ffb5592520d3b6976f9bcfece5083ad8 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Wed, 9 Mar 2022 21:31:38 -0600 Subject: [PATCH] Turn of lint for nextjs typos (triggered by getStaticPropz) --- web/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/.eslintrc.js b/web/.eslintrc.js index 3e9ebd5c..eafcc74d 100644 --- a/web/.eslintrc.js +++ b/web/.eslintrc.js @@ -4,5 +4,6 @@ module.exports = { rules: { // Add or disable rules here. '@next/next/no-img-element': 'off', + '@next/next/no-typos': 'off', }, }