-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |