e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
module.exports = {
|
|
helpers: {
|
|
foo: function () {
|
|
return '';
|
|
},
|
|
},
|
|
context: {
|
|
bar: true,
|
|
},
|
|
|
|
handlebars:
|
|
'{{foo person "person" 1 true foo=bar foo="person" foo=1 foo=true}}',
|
|
};
|