From 1a5e199cc8cb2a42cba6a3f6ee3b88db3e2758a2 Mon Sep 17 00:00:00 2001 From: anubra266 Date: Mon, 22 Jan 2024 23:30:56 -0600 Subject: [PATCH] Fix lint --- plugin/package.json | 2 +- sandbox/.eslintignore | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 sandbox/.eslintignore diff --git a/plugin/package.json b/plugin/package.json index e3a6e4d..4ff39ee 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -25,7 +25,7 @@ "scripts": { "build": "tsup", "dev": "tsup --watch", - "lint": "eslint packages --ext .ts", + "lint": "eslint . --ext .ts", "prettier": "prettier --check packages", "prettier-fix": "prettier --write packages", "typecheck": "tsc --noEmit" diff --git a/sandbox/.eslintignore b/sandbox/.eslintignore new file mode 100644 index 0000000..7e9ad97 --- /dev/null +++ b/sandbox/.eslintignore @@ -0,0 +1,14 @@ +.DS_Store +node_modules +styled-system +.env +.env.* +!.env.example + +# Ignore files for PNPM, NPM and YARN +pnpm-lock.yaml +package-lock.json +yarn.lock + +# Ignore panda errors cause that's what we're here for +/src/App.tsx \ No newline at end of file