From 86a552c12b17a3b9bb12bf5485d895c398546fc8 Mon Sep 17 00:00:00 2001 From: Alexander Graebe Date: Thu, 17 Dec 2020 09:11:01 -0800 Subject: [PATCH] fix: remove vale check from lint task --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4345a536..69f148cb 100644 --- a/package.json +++ b/package.json @@ -121,7 +121,7 @@ "dev": "yarn clean:build-files && next dev", "build:cli-reference": "stx docs > src/_data/cli-reference.json", "export": "next export", - "lint": "yarn lint:eslint && yarn lint:prettier && yarn check:style", + "lint": "yarn lint:eslint && yarn lint:prettier", "lint:eslint": "eslint \"src/**/*.{ts,tsx}\" -f unix", "lint:fix": "eslint \"src/**/*.{ts,tsx}\" -f unix --fix", "lint:prettier": "prettier --check \"src/**/*.{ts,tsx,md,mdx}\" *.js",