Skip to content

Commit 7362459

Browse files
change a difficulty of 0 to an allowed value (#325)
Previously, a difficulty value of 0 was allowed, and `configlet lint` checked that each difficulty value was in the range from 0 to 10 inclusive. However, a difficulty of 0 is now disallowed. Typically, exercises with a difficulty value of 0 were deprecated exercises, but these still appear on the website for users who started them before they were deprecated, and so they should still have a difficulty level as normal. With this commit, we change the difficulty of our one deprecated exercise (`binary`) to an allowed value. See: - exercism/docs#290 - exercism/configlet#447
1 parent d06a851 commit 7362459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@
325325
"uuid": "3acf148d-df9e-4897-8c9f-c17a3ba5e4b6",
326326
"practices": [],
327327
"prerequisites": [],
328-
"difficulty": 0,
328+
"difficulty": 1,
329329
"topics": null,
330330
"status": "deprecated"
331331
},

0 commit comments

Comments
 (0)