Should the style guide provide recommendations for passing extra arguments through ... in lapply() and al.? In particular, should the extra arguments be named when passed to a function with no default arguments?
E.g. with function signature f(x, y):
# bad?
lapply(1:3, f, 4)
# good?
lapply(1:3, f, y = 4)