Derk-Jan Karrenbeld

Results 79 issues of Derk-Jan Karrenbeld

This uses `@exercism/eslint-config-tooling` for linting now. It also is a WIP to integrate `eslint` as analyzer, until we have solid integration in the web experience.

x:size/large

Currently, when a solution contains `reduce`, we _explicitly_ bail out early. The following two examples should be considered _approvable_, but **not** optimal. Both should come with a hint. ``` const...

**Describe the improvement**: When a solution has `+expression` instead of `Number(expression)`, and it's _otherwise optimal_, we want to give a specific message. It should still _approve_, but add a message...

**Describe the improvement**: When the following main method is provided, the analyzer bails early: ```javascript export const value = arr => { return +(COLORS.indexOf(arr[0]) + "" + COLORS.indexOf(arr[1])); }; ```...

This issue is for discussion and assignment for the [`rna-transcription`][exercise] core exercise in the `javascript` track. 🔗 [implementation][exercise] | [mentor-notes][mentor-notes] | [problem-specification][problem-specification] ---- [mentor-notes]: https://github.com/exercism/website-copy/tree/master/tracks/javascript/exercises/rna-transcription/mentoring.md [exercise]: https://github.com/exercism/javascript/tree/master/exercises/rna-transcription [problem-specification]: https://github.com/exercism/problem-specifications/tree/master/exercises/rna-transcription This...

**Is your feature request related to a problem? Please describe.** When a solution is provided with a re-assignment, the analyzer bails out of a lot of code paths. ```javascript export...

**Describe the improvement**: When an _optimal `map`_ solution is provided, the analyzer should `approve` but provide a comment that allows them to _continue_ the path. ``` Perhaps there is a...

Anything we write to a file called `analysis.out` (in the solution directory) will be made available to us later for manual inspection. If the `-c(onsole)` flag is not given and...

Currently there is quite a bit of code that is obnoxious because of `node.fs`. Instead, we might want to use [`shelljs`](https://github.com/shelljs/shelljs) and have a lot of this be handled by...

Students are now passing solutions that are not valid TypeScript, because CodeMirror isn't actually running TSC. - Should we change the test runner to also run tsc? - Is it...

type/improvement
area/frontend