From bb6211d6750d524b1761b7f657c0c510aca5e5a0 Mon Sep 17 00:00:00 2001 From: Danish Arora <35004822+danisharora099@users.noreply.github.com> Date: Thu, 17 Aug 2023 17:24:38 +0530 Subject: [PATCH] add prettier rule to eslint (#1488) --- .eslintrc.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 4e17958d1b..ecfa1a0907 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,6 +16,12 @@ ], "globals": { "BigInt": true, "console": true, "WebAssembly": true }, "rules": { + "prettier/prettier": [ + "error", + { + "trailingComma": "none" + } + ], "comma-dangle": ["error", "never"], "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-module-boundary-types": "off",