emacs/test/manual/indent/js-indent-align-list-continuation-nil.js

21 lines
345 B
JavaScript
Raw Normal View History

const funcAssignment = function (arg1,
arg2,
arg3) {
return { test: this,
which: "would",
align: "as well with the default setting"
};
}
function funcDeclaration(arg1,
arg2
) {
return [arg1,
arg2];
}
// Local Variables:
// indent-tabs-mode: nil
// js-indent-align-list-continuation: nil
// End: