From dc82cdb95b73e3e0ed3e26ab836bcb06dc5f7154 Mon Sep 17 00:00:00 2001 From: Greenlamp Date: Wed, 22 May 2024 01:19:56 +0200 Subject: [PATCH] removed config for camelCase --- .eslintrc.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index dc0d35b3ded..07401546e38 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,8 +16,7 @@ "args": "none", // Allows unused function parameters. Useful for functions with specific signatures where not all parameters are always used. "ignoreRestSiblings": true // Allows unused variables that are part of a rest property in object destructuring. Useful for excluding certain properties from an object while using the rest. }], - "eol-last": ["error", "always"], // Enforces at least one newline at the end of files - "camelcase": ["error", { "properties": "always" }] // Enforces camelCase naming convention for properties + "eol-last": ["error", "always"] // Enforces at least one newline at the end of files } }, { "files": ["src/**/*.{ts,tsx,js,jsx}"], // Applies these rules to all TypeScript and JavaScript files in the src directory