From 7766e0c79cd8133de990c183c1ccabafa89904f8 Mon Sep 17 00:00:00 2001 From: Chris Wei Date: Fri, 6 Nov 2020 11:23:46 -0800 Subject: [PATCH] chore(settings): enable typescript format and validation --- .vscode/settings.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7b76b7dc2..038c51efc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,14 +1,12 @@ // Place your settings in this file to overwrite default and user settings. { - "editor.rulers": [ - 120 - ], + "editor.rulers": [120], "flow.enabled": false, "flow.useNPMPackagedFlow": true, "prettier.eslintIntegration": true, "prettier.printWidth": 120, "prettier.singleQuote": true, "prettier.tabWidth": 4, - "typescript.format.enable": false, - "typescript.validate.enable": false + "typescript.format.enable": true, + "typescript.validate.enable": true }