From 7b753f63f513256c8ec4f3b22868c661ada141f4 Mon Sep 17 00:00:00 2001 From: Pavol Juhas Date: Thu, 29 Jun 2023 13:35:20 -0700 Subject: [PATCH] Remove invalid extra commas from json data (#6176) Ensure all json files pass the following validation $ git ls-files "*.json" | while read f; do python -m json.tool $f >/dev/null || echo $f; done --- asv.conf.json | 2 +- cirq-web/cirq_ts/tsconfig.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/asv.conf.json b/asv.conf.json index 908d524d58d..275793d201e 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -14,5 +14,5 @@ "env_dir": ".asv/env", "results_dir": ".asv/results", "html_dir": ".asv/html", - "hash_length": 8, + "hash_length": 8 } diff --git a/cirq-web/cirq_ts/tsconfig.json b/cirq-web/cirq_ts/tsconfig.json index bb957e0db21..ef00dad77d0 100644 --- a/cirq-web/cirq_ts/tsconfig.json +++ b/cirq-web/cirq_ts/tsconfig.json @@ -11,9 +11,9 @@ "downlevelIteration": true, "declaration": false, "sourceMap": false, - "outDir": "build", + "outDir": "build" }, "include": [ - "src/**/*.ts", - ], + "src/**/*.ts" + ] }