Skip to content

Commit

Permalink
Remove invalid extra commas from json data (#6176)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pavoljuhas committed Jun 29, 2023
1 parent bc09047 commit 7b753f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion asv.conf.json
Expand Up @@ -14,5 +14,5 @@
"env_dir": ".asv/env",
"results_dir": ".asv/results",
"html_dir": ".asv/html",
"hash_length": 8,
"hash_length": 8
}
6 changes: 3 additions & 3 deletions cirq-web/cirq_ts/tsconfig.json
Expand Up @@ -11,9 +11,9 @@
"downlevelIteration": true,
"declaration": false,
"sourceMap": false,
"outDir": "build",
"outDir": "build"
},
"include": [
"src/**/*.ts",
],
"src/**/*.ts"
]
}

0 comments on commit 7b753f6

Please sign in to comment.