From 4b2aac3da20a639e7c303f9b64ddd28c9a0de9ad Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 29 Dec 2021 09:14:14 -0600 Subject: [PATCH] Adding eslint rule danlge comma. --- .eslintrc.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index aa20bf6..fd37a39 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,4 +1,16 @@ { + "rules": { + "comma-dangle": [ + "error", + { + "arrays": "never", + "objects": "never", + "imports": "never", + "exports": "never", + "functions": "never" + } + ] + }, "extends": [ "next", "next/core-web-vitals",