e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
14 lines
269 B
JavaScript
14 lines
269 B
JavaScript
module.exports = {
|
|
context: {
|
|
names: [
|
|
{ name: 'Moe' },
|
|
{ name: 'Larry' },
|
|
{ name: 'Curly' },
|
|
{ name: 'Shemp' },
|
|
],
|
|
foo: 'bar',
|
|
},
|
|
handlebars: '{{#each names}}{{../foo}}{{/each}}',
|
|
mustache: '{{#names}}{{foo}}{{/names}}',
|
|
};
|