From eb04c2b05d7e26e48f59bf15e4c05a7e37768c80 Mon Sep 17 00:00:00 2001 From: Yuri Tkachenko Date: Tue, 27 Aug 2024 12:05:16 +0100 Subject: [PATCH] chore: review updates --- .prettierignore | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.prettierignore b/.prettierignore index 35b275a85..35c7b07b9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,5 @@ foundry -contracts/**/*.sol +contracts .gitignore .prettierignore diff --git a/package.json b/package.json index fcdc028e0..3803dd4af 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "compile": "hardhat compile", "lint:sol": "solhint 'contracts/**/*.sol'", "lint:sol:fix": "yarn lint:sol --fix", - "lint:ts": "eslint . --max-warnings=0 --flag unstable_ts_config", + "lint:ts": "eslint . --max-warnings=0", "lint:ts:fix": "yarn lint:ts --fix", "lint": "yarn lint:sol && yarn lint:ts", "format": "prettier . --write", @@ -32,7 +32,7 @@ }, "lint-staged": { "./**/*.ts": [ - "eslint --max-warnings=0 --flag unstable_ts_config" + "eslint --max-warnings=0" ], "./**/*.{ts,md,json}": [ "prettier --write"