Skip to content

Commit

Permalink
Reformat config files
Browse files Browse the repository at this point in the history
This runs the configlet fmt command, which normalizes the
contents and ordering of keys in the track config and
maintainers config.

This will let us script changes to the config files without
having unnecessary noise in the diffs when submitting pull
requests.
  • Loading branch information
Katrina Owen committed Jun 10, 2018
1 parent eeac31e commit a231d64
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions config/maintainers.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md",
"maintainers": [
{
"github_username": "kotp",
"show_on_website": false,
"alumnus": false,
"show_on_website": false,
"name": null,
"bio": null,
"link_text": null,
"link_url": null,
"avatar_url": null
"avatar_url": null,
"bio": null
},
{
"github_username": "mienaikage",
"show_on_website": true,
"alumnus": false,
"show_on_website": true,
"name": null,
"bio": "My first adventure in coding was creating userscripts by trial and error (many errors...). Somewhere down the line I accidentally found myself employed in my first coding role as a Perl developer, after attempting pair programming in Haskell.",
"link_text": "dango.space",
"link_url": "http://dango.space/",
"avatar_url": null
"avatar_url": null,
"bio": "My first adventure in coding was creating userscripts by trial and error (many errors...). Somewhere down the line I accidentally found myself employed in my first coding role as a Perl developer, after attempting pair programming in Haskell."
}
],
"docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md"
]
}

0 comments on commit a231d64

Please sign in to comment.