Format JavaScript Standard Style as Stylish (i.e. snazzy) output
94
Pending
Does it follow best practices?
Impact
94%
1.18xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
{
"context": "This evaluation assesses the engineer's ability to use the standard-json library to parse compact linter output. The focus is on using the library correctly with appropriate options for robust parsing, handling format variations, and producing properly normalized JSON output.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses standard-json library",
"description": "Code imports and uses the standard-json package (require('standard-json') or equivalent) for parsing linter output rather than implementing custom parsing logic or using other libraries.",
"max_score": 30
},
{
"name": "Noisey option enabled",
"description": "Code passes the { noisey: true } option to the standard-json parser to enable robust parsing with error tolerance and format variation handling.",
"max_score": 40
},
{
"name": "Correct data extraction",
"description": "Code correctly extracts and uses the parsed result from standard-json, accessing the appropriate properties (filePath, messages array with line, column, message, ruleId fields) as returned by the library.",
"max_score": 20
},
{
"name": "Input to parser",
"description": "Code correctly passes compact linter output from stdin to the standard-json parser as string input.",
"max_score": 10
}
]
}docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10