From 00a11c73d37bcbfefaa4a6a1e11820233e13399c Mon Sep 17 00:00:00 2001 From: Rebecca Stevens Date: Sun, 21 Apr 2024 23:20:36 +1200 Subject: [PATCH] feat: more tweaks --- src/configs/formatters.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/configs/formatters.ts b/src/configs/formatters.ts index 079d2ce1..12ea1a8c 100644 --- a/src/configs/formatters.ts +++ b/src/configs/formatters.ts @@ -86,6 +86,20 @@ export async function formatters( ), "no-irregular-whitespace": "off", + // "style/lines-around-comment": "off", + "style/max-len": "off", + "style/no-confusing-arrow": "off", + "style/no-mixed-operators": "off", + "style/no-tabs": "off", + "style/quotes": "off", + // "style/js/lines-around-comment": "off", + // "style/js/max-len": "off", + "style/js/no-confusing-arrow": "off", + "style/js/no-mixed-operators": "off", + "style/js/no-tabs": "off", + "style/js/quotes": "off", + // "style/ts/lines-around-comment": "off", + "style/ts/quotes": "off", // From https://github.com/prettier/eslint-config-prettier/pull/272 "style/array-bracket-newline": "off",