From a3e3c8a1c1d5d6aadf243b16c74b6c346770e08a Mon Sep 17 00:00:00 2001 From: Scott Cooper Date: Wed, 17 Jan 2024 10:08:21 -0800 Subject: [PATCH] chore: disable lint --- src/format-input.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/format-input.ts b/src/format-input.ts index 15da6e2..7739d70 100644 --- a/src/format-input.ts +++ b/src/format-input.ts @@ -95,8 +95,10 @@ const CSS_UNIT = '(?:' + CSS_NUMBER + ')|(?:' + CSS_INTEGER + ')'; // Actual matching. // Parentheses and commas are optional, but not required. // Whitespace can take the place of commas or opening paren +// eslint-disable-next-line prettier/prettier const PERMISSIVE_MATCH3 = '[\\s|\\(]+(' + CSS_UNIT + ')[,|\\s]+(' + CSS_UNIT + ')[,|\\s]+(' + CSS_UNIT + ')\\s*\\)?'; const PERMISSIVE_MATCH4 = + // eslint-disable-next-line prettier/prettier '[\\s|\\(]+(' + CSS_UNIT + ')[,|\\s]+(' + CSS_UNIT + ')[,|\\s]+(' + CSS_UNIT + ')[,|\\s]+(' + CSS_UNIT + ')\\s*\\)?'; const matchers = {