From dc4b4dab1da839a82c124f1c2f6b02a6f0e983b6 Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Fri, 4 Jun 2021 09:25:13 -0400 Subject: [PATCH] add the lint-fix script (#831) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index df2b3426..dde81c02 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "format": "prettier --write packages/**/*.ts", "format-check": "prettier --check packages/**/*.ts", "lint": "eslint packages/**/*.ts", + "lint-fix": "eslint packages/**/*.ts --fix", "new-package": "scripts/create-package", "test": "jest --testTimeout 10000" },