e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
module.exports = {
|
|
context: { name: 'Mick', count: 30 },
|
|
handlebars: 'Hello {{name}}! You have {{count}} new messages.',
|
|
dust: 'Hello {name}! You have {count} new messages.',
|
|
mustache: 'Hello {{name}}! You have {{count}} new messages.',
|
|
};
|