From 8358d4843c372dc0dfb55000a37651a46bab9d11 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 27 Nov 2025 18:31:36 -0800 Subject: [PATCH] Add ESLint to ani-cursor and include in CI (#1323) - Add lint script to ani-cursor package.json - Add ani-cursor#lint task to turbo.json so it runs in CI --- packages/ani-cursor/package.json | 1 + turbo.json | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/ani-cursor/package.json b/packages/ani-cursor/package.json index 0619a051..f03fb1a6 100644 --- a/packages/ani-cursor/package.json +++ b/packages/ani-cursor/package.json @@ -32,6 +32,7 @@ "scripts": { "build": "tsc", "type-check": "tsc --noEmit", + "lint": "eslint src --ext ts,js", "test": "jest", "prepublish": "tsc" }, diff --git a/turbo.json b/turbo.json index 5f6fc4e1..dcb221de 100644 --- a/turbo.json +++ b/turbo.json @@ -64,6 +64,7 @@ "webamp#lint": { "dependsOn": ["ani-cursor#build", "winamp-eqf#build"] }, + "ani-cursor#lint": {}, "skin-database#lint": {}, "webamp-modern#lint": {}, "winamp-eqf#lint": {},