Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 24cea63

Browse files
committed
Haskell: v3 config.json stub
This stub contains all things necessary but the list of exercises. The example C# config.json did not contain the fields `ignore_pattern` and `solution_pattern` present in Haskell's config.json, but the [migration guide][1] also did not speak of deprecating any properties. For this reason, this PR preserves those properties and adds new ones. [1]: https://github.com/exercism/v3/blob/master/docs/maintainers/migrating-your-config-json-files.md
1 parent 1260048 commit 24cea63

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

languages/haskell/config.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"language": "Elixir",
3+
"version": 3,
4+
"active": true,
5+
"blurb": "Haskell is a functional programming language which is pure and statically-typed. It's known for lazy evaluation, where evaluation is deferred until necessary, and its purity, where monads are used for working with side-effects.",
6+
"online_editor": {
7+
"indent_style": "space",
8+
"indent_size": 2
9+
},
10+
"ignore_pattern": "example",
11+
"solution_pattern": "example.*[.]hs",
12+
"exercises": {
13+
"concept": [],
14+
"practice": []
15+
}
16+
}

0 commit comments

Comments
 (0)