From 2a616af4e8eb067c68347725085631176132271b Mon Sep 17 00:00:00 2001 From: Damian Stasik <920747+damianstasik@users.noreply.github.com> Date: Wed, 20 Sep 2023 15:53:50 +0200 Subject: [PATCH] Add eslintignore and remove eslint from precommit hook (#168) --- .eslintignore | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..d3d5a2e2 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +opentofu-repo +build diff --git a/package.json b/package.json index 9e04e455..bcc9ee0c 100644 --- a/package.json +++ b/package.json @@ -59,6 +59,6 @@ "lint-staged": "^14.0.1" }, "lint-staged": { - "**/*": ["prettier --write --ignore-unknown", "npm run lint"] + "**/*": "prettier --write --ignore-unknown" } }