identityArrayMapPointless identity `.map()` call on Array. Use `table.clone(array)` or `[...array]` instead.small-rules/no-identity-mapDisallow pointless identity `.map()` calls that return the parameter unchanged
identityArrayMapPointless identity `.map()` call on Array. Use `table.clone(array)` or `[...array]` instead.identityBindingMapPointless identity `.map()` call on Binding. Use the original binding directly.This rule accepts one options object after the severity.
scaleBinding.map(v => v)After auto-fix
scaleBindingbinding.map(v => v + 1)