Dont-Shadow-Arguments
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: dont-shadow-arguments
Section titled “Sourcery rule id: dont-shadow-arguments”Description
Section titled “Description”Don’t shadow arguments.
function foo(name, options, arguments) { something();}Explanation
Section titled “Explanation”Never name a parameter arguments.
This will take precedence over the arguments object that is given to every function scope.
From the Airbnb JavaScript Style Guide