From ccbff804454ab61fd9beb70bb8e40757effd66d8 Mon Sep 17 00:00:00 2001 From: Roshan Raghupathy Date: Wed, 11 Dec 2024 11:21:23 +0530 Subject: [PATCH] add linting --- packages/plugin-tee-marlin/eslint.config.mjs | 3 +++ packages/plugin-tee-marlin/package.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 packages/plugin-tee-marlin/eslint.config.mjs diff --git a/packages/plugin-tee-marlin/eslint.config.mjs b/packages/plugin-tee-marlin/eslint.config.mjs new file mode 100644 index 0000000000..92fe5bbebe --- /dev/null +++ b/packages/plugin-tee-marlin/eslint.config.mjs @@ -0,0 +1,3 @@ +import eslintGlobalConfig from "../../eslint.config.mjs"; + +export default [...eslintGlobalConfig]; diff --git a/packages/plugin-tee-marlin/package.json b/packages/plugin-tee-marlin/package.json index 04ee32a884..715f45d2a2 100644 --- a/packages/plugin-tee-marlin/package.json +++ b/packages/plugin-tee-marlin/package.json @@ -10,7 +10,8 @@ }, "scripts": { "build": "tsup --format esm --dts", - "dev": "tsup --format esm --dts --watch" + "dev": "tsup --format esm --dts --watch", + "lint": "eslint . --fix" }, "peerDependencies": { "whatwg-url": "7.1.0"