From 23957bf7d81e6a425a96d37936b759a7ba9b6a89 Mon Sep 17 00:00:00 2001 From: AlexAegis Date: Sat, 2 Dec 2023 07:59:33 +0100 Subject: [PATCH] chore: removed eslint rule override --- solutions/typescript/2023/02/src/p1.ts | 1 - solutions/typescript/2023/02/src/p2.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/solutions/typescript/2023/02/src/p1.ts b/solutions/typescript/2023/02/src/p1.ts index d13e71b17..d6964d3f7 100644 --- a/solutions/typescript/2023/02/src/p1.ts +++ b/solutions/typescript/2023/02/src/p1.ts @@ -1,4 +1,3 @@ -/* eslint-disable @typescript-eslint/no-non-null-assertion */ import { task } from '@alexaegis/advent-of-code-lib'; import packageJson from '../package.json'; import { parse } from './parse.js'; diff --git a/solutions/typescript/2023/02/src/p2.ts b/solutions/typescript/2023/02/src/p2.ts index 98242bc75..6d05b1546 100644 --- a/solutions/typescript/2023/02/src/p2.ts +++ b/solutions/typescript/2023/02/src/p2.ts @@ -1,4 +1,3 @@ -/* eslint-disable @typescript-eslint/no-non-null-assertion */ import { task } from '@alexaegis/advent-of-code-lib'; import packageJson from '../package.json'; import { parse, type Bag } from './parse.js';