e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
module.exports = {
|
|
context: { person: { name: 'Larry', age: 45 } },
|
|
handlebars: '{{#person}}{{name}}{{age}}{{/person}}',
|
|
};
|