Write logs based on conventional commits and templates.
85
{
"context": "This criteria evaluates how well the engineer uses the conventional-changelog-writer package to generate changelogs with timezone configuration. The focus is on proper usage of the package's timeZone option and its integration with the changelog generation APIs.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses writeChangelogString API",
"description": "Uses the writeChangelogString function from conventional-changelog-writer to generate changelog output as a string",
"max_score": 25
},
{
"name": "Configures timeZone option",
"description": "Passes the timeZone option in the options object to control date formatting (e.g., options with timeZone: 'America/New_York', 'Asia/Tokyo', or 'UTC')",
"max_score": 30
},
{
"name": "Proper commit structure",
"description": "Provides commit objects in the expected format with committerDate field that the package can process for date formatting",
"max_score": 20
},
{
"name": "Handles default timezone",
"description": "Correctly handles the default timezone behavior when timeZone option is not specified (defaults to UTC)",
"max_score": 15
},
{
"name": "Returns changelog string",
"description": "Properly returns or resolves the changelog string output from writeChangelogString for use in the implementation",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-conventional-changelog-writerevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10