Skip to content

Commit

Permalink
config.json: populate tags (exercism#287)
Browse files Browse the repository at this point in the history
This deliberately omits some tags that we could conceivably add, e.g.:
- paradigm/functional
- paradigm/object_oriented
- execution_mode/interpreted
- platform/ios
- platform/android
- runtime/language_specific

The spec currently contains:
> Tracks can be annotated with tags, which allows searching for tracks
> with a certain tag combination.

> A track should choose their tags based on the general usage of their
> language. For example, imagine a student thinking: "I'd like to do
> machine learning, what language should I pick?", or "I'd like to learn
> functional programming, which language should I choose?". If your
> language would be a good candidate, give it that tag. If your language
> supports some functional ideas but they're rarely used, or a few
> people do Machine Learning in it, but it's rare, then do not apply
> those tags.

See:
- https://github.com/exercism/docs/blob/main/anatomy/tracks/config-json.md#tags

Closes: exercism#271
  • Loading branch information
ee7 committed Feb 20, 2021
1 parent afabf42 commit 990fd51
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,5 +928,24 @@
},
"concepts": [],
"key_features": [],
"tags": []
"tags": [
"paradigm/imperative",
"paradigm/procedural",
"typing/static",
"typing/strong",
"execution_mode/compiled",
"platform/windows",
"platform/mac",
"platform/linux",
"platform/web",
"runtime/standalone_executable",
"used_for/backends",
"used_for/cross_platform_development",
"used_for/embedded_systems",
"used_for/frontends",
"used_for/games",
"used_for/scientific_calculations",
"used_for/scripts",
"used_for/web_development"
]
}

0 comments on commit 990fd51

Please sign in to comment.