From b5fc328804d6e716920c6c736b8ff92641caa9a9 Mon Sep 17 00:00:00 2001 From: Jun Koyama Date: Tue, 6 Oct 2020 01:07:38 +0900 Subject: [PATCH] Changed lint option to make it easier to see --- Samples/TypeScript/Demo/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Samples/TypeScript/Demo/package.json b/Samples/TypeScript/Demo/package.json index 19fa055..b2af5df 100644 --- a/Samples/TypeScript/Demo/package.json +++ b/Samples/TypeScript/Demo/package.json @@ -5,8 +5,8 @@ "build": "webpack -d --hide-modules", "build:prod": "webpack -p --hide-modules", "test": "tsc --noEmit", - "lint": "eslint src -f codeframe --ext .ts", - "lint:fix": "eslint src -f codeframe --ext .ts --fix", + "lint": "eslint src --ext .ts", + "lint:fix": "eslint src --ext .ts --fix", "serve": "serve ../../.. -p 5000", "clean": "rimraf dist" },