From 78bc4b4f245e9af0bc441a89db2236785b7cfa6e Mon Sep 17 00:00:00 2001 From: Lechner Julian - FrauJulian Date: Tue, 16 Dec 2025 16:02:07 +0100 Subject: [PATCH] eslint changes; --- .github/dependabot.yml | 8 ++++---- tsconfig.eslint.json | 4 ++-- tsup.config.ts | 12 ++++++------ 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b417983..1badd25 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily" + - package-ecosystem: 'npm' # See documentation for possible values + directory: '/' # Location of package manifests + schedule: + interval: 'daily' diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 56fd568..9db49fa 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,4 +1,4 @@ { - "extends": "./tsconfig.json", - "include": ["src/**/*.ts"] + "extends": "./tsconfig.json", + "include": ["src/**/*.ts"] } diff --git a/tsup.config.ts b/tsup.config.ts index 744227d..82cce89 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -1,10 +1,10 @@ import { defineConfig } from 'tsup'; export default defineConfig({ - format: ['cjs', 'esm'], - entry: ['./src/index.ts'], - dts: true, - shims: true, - skipNodeModulesBundle: true, - clean: true, + format: ['cjs', 'esm'], + entry: ['./src/index.ts'], + dts: true, + shims: true, + skipNodeModulesBundle: true, + clean: true, });