web: fix linting issues

This commit is contained in:
Jens Langhammer
2021-02-04 10:22:14 +01:00
parent 9ca9e67ffa
commit 7e2a471903
3 changed files with 10 additions and 13 deletions

View File

@ -1,7 +1,7 @@
import { html, TemplateResult } from "lit-html";
export const SLUG_REGEX = "[-a-zA-Z0-9_]+";
export const ID_REGEX = "\d+";
export const ID_REGEX = "\\d+";
export class Route {
url: RegExp;