Skip to content

Commit

Permalink
Run configlet fmt to normalize configs (#152)
Browse files Browse the repository at this point in the history
* Run configlet fmt to normalize configs

This normalizes exercise configs, which should help
reduce noise in other PRs later.

* Reformat top-level config.json

This reformats the top-level config file in order to
reduce noise in later PRs that touch this file.
  • Loading branch information
kytrinyx committed Jan 23, 2023
1 parent ef9914c commit 3d4e67d
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 18 deletions.
31 changes: 26 additions & 5 deletions config.json
Expand Up @@ -273,14 +273,23 @@
"result",
"case"
],
"prerequisites": ["list", "string", "result", "case"],
"prerequisites": [
"list",
"string",
"result",
"case"
],
"difficulty": 1
},
{
"slug": "diamond",
"name": "Diamond",
"uuid": "736a470f-412c-41fc-b92d-9bd59ef3bcce",
"practices": ["string", "list", "maths"],
"practices": [
"string",
"list",
"maths"
],
"prerequisites": [
"string",
"list",
Expand Down Expand Up @@ -323,15 +332,27 @@
"slug": "word-count",
"name": "Word Count",
"uuid": "0c7a2f06-1e53-4043-9e1a-386e90e945b4",
"practices": ["regex", "map"],
"prerequisites": ["list", "string", "regex", "map"],
"practices": [
"regex",
"map"
],
"prerequisites": [
"list",
"string",
"regex",
"map"
],
"difficulty": 4
},
{
"slug": "circular-buffer",
"name": "Circular Buffer",
"uuid": "b62f8574-9bac-4b95-a76c-f13789ae2663",
"practices": ["custom-type", "generics", "queue"],
"practices": [
"custom-type",
"generics",
"queue"
],
"prerequisites": [
"custom-type",
"result",
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/darts/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/darts.gleam"
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/diamond/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/diamond.gleam"
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/protein-translation/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/protein_translation.gleam"
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/raindrops/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/raindrops.gleam"
Expand Down
1 change: 0 additions & 1 deletion exercises/practice/rna-transcription/.meta/config.json
Expand Up @@ -2,7 +2,6 @@
"authors": [
"lpil"
],
"contributors": [],
"files": {
"solution": [
"src/rna_transcription.gleam"
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/series/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/series.gleam"
Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/word-count/.meta/config.json
Expand Up @@ -2,8 +2,6 @@
"authors": [
"lpil"
],
"contributors": [
],
"files": {
"solution": [
"src/word_count.gleam"
Expand Down

0 comments on commit 3d4e67d

Please sign in to comment.