Skip to content

Commit ed54bbc

Browse files
authored
Update .meta/config.json data (#3032)
* `gotools`: format JSON output with empty fields removed * Update metadata files with `gotool test_files` * Drop the files.invalidator entry
1 parent 62b3879 commit ed54bbc

File tree

147 files changed

+240
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+240
-679
lines changed

exercises/practice/accumulate/.meta/config.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
],
3333
"example": [
3434
".meta/example.go"
35-
],
36-
"invalidator": [
37-
"go.mod"
3835
]
3936
},
4037
"source": "Conversation with James Edward Gray II",

exercises/practice/acronym/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,11 @@
2929
"acronym.go"
3030
],
3131
"test": [
32-
"acronym_test.go"
32+
"acronym_test.go",
33+
"cases_test.go"
3334
],
3435
"example": [
3536
".meta/example.go"
36-
],
37-
"editor": [
38-
"cases_test.go"
39-
],
40-
"invalidator": [
41-
"go.mod"
4237
]
4338
},
4439
"blurb": "Convert a long phrase to its acronym.",

exercises/practice/affine-cipher/.meta/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"affine_cipher.go"
88
],
99
"test": [
10-
"affine_cipher_test.go"
10+
"affine_cipher_test.go",
11+
"cases_test.go"
1112
],
1213
"example": [
1314
".meta/example.go"

exercises/practice/all-your-base/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,11 @@
2121
"all_your_base.go"
2222
],
2323
"test": [
24-
"all_your_base_test.go"
24+
"all_your_base_test.go",
25+
"cases_test.go"
2526
],
2627
"example": [
2728
".meta/example.go"
28-
],
29-
"editor": [
30-
"cases_test.go"
31-
],
32-
"invalidator": [
33-
"go.mod"
3429
]
3530
},
3631
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base."

exercises/practice/allergies/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,11 @@
2525
"allergies.go"
2626
],
2727
"test": [
28-
"allergies_test.go"
28+
"allergies_test.go",
29+
"cases_test.go"
2930
],
3031
"example": [
3132
".meta/example.go"
32-
],
33-
"editor": [
34-
"cases_test.go"
35-
],
36-
"invalidator": [
37-
"go.mod"
3833
]
3934
},
4035
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",

exercises/practice/alphametics/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,11 @@
1515
"alphametics.go"
1616
],
1717
"test": [
18-
"alphametics_test.go"
18+
"alphametics_test.go",
19+
"cases_test.go"
1920
],
2021
"example": [
2122
".meta/example.go"
22-
],
23-
"editor": [
24-
"cases_test.go"
25-
],
26-
"invalidator": [
27-
"go.mod"
2823
]
2924
},
3025
"blurb": "Given an alphametics puzzle, find the correct solution."

exercises/practice/anagram/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,11 @@
2727
"anagram.go"
2828
],
2929
"test": [
30-
"anagram_test.go"
30+
"anagram_test.go",
31+
"cases_test.go"
3132
],
3233
"example": [
3334
".meta/example.go"
34-
],
35-
"editor": [
36-
"cases_test.go"
37-
],
38-
"invalidator": [
39-
"go.mod"
4035
]
4136
},
4237
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",

exercises/practice/armstrong-numbers/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,11 @@
1919
"armstrong_numbers.go"
2020
],
2121
"test": [
22-
"armstrong_numbers_test.go"
22+
"armstrong_numbers_test.go",
23+
"cases_test.go"
2324
],
2425
"example": [
2526
".meta/example.go"
26-
],
27-
"editor": [
28-
"cases_test.go"
29-
],
30-
"invalidator": [
31-
"go.mod"
3227
]
3328
},
3429
"blurb": "Determine if a number is an Armstrong number.",

exercises/practice/atbash-cipher/.meta/config.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,11 @@
2323
"atbash_cipher.go"
2424
],
2525
"test": [
26-
"atbash_cipher_test.go"
26+
"atbash_cipher_test.go",
27+
"cases_test.go"
2728
],
2829
"example": [
2930
".meta/example.go"
30-
],
31-
"editor": [
32-
"cases_test.go"
33-
],
34-
"invalidator": [
35-
"go.mod"
3631
]
3732
},
3833
"blurb": "Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East.",

exercises/practice/baffling-birthdays/.meta/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"baffling_birthdays.go"
88
],
99
"test": [
10-
"baffling_birthdays_test.go"
10+
"baffling_birthdays_test.go",
11+
"cases_test.go"
1112
],
1213
"example": [
1314
".meta/example.go"

0 commit comments

Comments
 (0)