From 2694069dd5d65953927830d653ef500b35c33e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Wed, 12 Apr 2023 11:18:46 +0200 Subject: [PATCH] don't lint fix this import. --- .../libs/router/generate-route-path-builder.function.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/libs/router/generate-route-path-builder.function.ts b/src/Umbraco.Web.UI.Client/libs/router/generate-route-path-builder.function.ts index 5b2e92b10d..5fee139a5c 100644 --- a/src/Umbraco.Web.UI.Client/libs/router/generate-route-path-builder.function.ts +++ b/src/Umbraco.Web.UI.Client/libs/router/generate-route-path-builder.function.ts @@ -1,4 +1,5 @@ -import { stripSlash } from 'router-slot/util'; +/* eslint-disable */ +import { stripSlash } from 'router-slot/util'; // This must only include the util to avoid side effects of registering the route element. const PARAM_IDENTIFIER = /:([^\\/]+)/g;