From 3bcfb171b9cdcd84d60798c57514401a051223ed Mon Sep 17 00:00:00 2001 From: BeauAgst <10343831+BeauAgst@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:02:31 +0100 Subject: [PATCH] chore: linting --- package.json | 2 +- tsconfig.json | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index a8d2479..5345deb 100644 --- a/package.json +++ b/package.json @@ -139,4 +139,4 @@ "prettier --cache --write --ignore-unknown" ] } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index 9cf2dd0..f88eb85 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,15 +2,13 @@ "compilerOptions": { "module": "Node16", "target": "ES2022", - "lib": [ - "ES2022" - ], + "lib": ["ES2022"], "sourceMap": true, "rootDir": "src", - "strict": true, /* enable all strict type-checking options */ + "strict": true /* enable all strict type-checking options */, /* Additional Checks */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ - "noUnusedParameters": true, /* Report errors on unused parameters. */ + "noUnusedParameters": true /* Report errors on unused parameters. */ } -} \ No newline at end of file +}