Skip to content

Commit

Permalink
feat: finish setting up the config JSON schema
Browse files Browse the repository at this point in the history
  • Loading branch information
VanishMax committed Mar 26, 2024
1 parent 73889f6 commit f658034
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grammar/configSchema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema#",
"$id": "https://raw.githubusercontent.com/vanishmax/tact/main/grammar/configSchema.json",
"$id": "http://raw.githubusercontent.com/tact-lang/tact/main/grammar/configSchema.json",
"title": "Tact configuration schema",
"description": "JSON Schema for Tact configuration file",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-tact.config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/vanishmax/tact/main/grammar/configSchema.json",
"$schema": "http://raw.githubusercontent.com/tact-lang/tact/main/grammar/configSchema.json",
"projects": [
{
"name": "implicit-init-2",
Expand Down
2 changes: 1 addition & 1 deletion tact.config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://raw.githubusercontent.com/vanishmax/tact/main/grammar/configSchema.json",
"$schema": "http://raw.githubusercontent.com/tact-lang/tact/main/grammar/configSchema.json",
"projects": [
{
"name": "echo",
Expand Down

0 comments on commit f658034

Please sign in to comment.