From ef02ddcf81cc125ff7894ab52199cd792565ea20 Mon Sep 17 00:00:00 2001 From: Josue Date: Mon, 15 Mar 2021 18:04:47 -0400 Subject: [PATCH] chore: remove camelcase rule from eslint --- striker-ui/.eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/striker-ui/.eslintrc.json b/striker-ui/.eslintrc.json index 89399132..91857453 100644 --- a/striker-ui/.eslintrc.json +++ b/striker-ui/.eslintrc.json @@ -52,7 +52,10 @@ // Use TypeScript's types for component props "react/prop-types": "off", // Importing React is not required in Next.js - "react/react-in-jsx-scope": "off" + "react/react-in-jsx-scope": "off", + + "camelcase": "off", + "@typescript-eslint/camelcase": "off" }, "settings": { "react": { "version": "detect" }