<!-- 🍩 Please don't ignore this template --> <!-- 1️⃣ Explain here why this rule would be beneficial --> Prevent specifying the `this` argument to array methods when using an arrow function, since it has no effect. Applies to the following instance methods: ``` map filter some find forEach findIndex every ``` And also `Array.from`. Only `Array.from` can be safely auto-fixed. The others should use suggestions. ## Fail <!-- 2️⃣ Specify an example of code that should be detected --> ```js array.filter(x => x === 1, this); ``` ## Pass <!-- 3️⃣ Specify an example of code that would be accepted in its place --> ```js array.filter(x => x === 1); ```