preferSingleOverloadUse the single-value sequence overload instead of two identical keypoints.small-rules/prefer-sequence-overloadsPrefer direct ColorSequence and NumberSequence overloads over identical direct arguments and two-keypoint arrays.
preferSingleOverloadUse the single-value sequence overload instead of two identical keypoints.preferTwoPointOverloadUse the two-value sequence overload instead of constructing a two-keypoint array.This rule does not accept options.
const gradient = new ColorSequence(new Color3(), new Color3());After auto-fix
const gradient = new ColorSequence(new Color3());new ColorSequence(Color3.fromRGB(100, 200, 255));