]> source.dussan.org Git - jquery.git/commit
Build: ESLint: forbid unused function parameters
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Mon, 13 May 2019 20:25:11 +0000 (22:25 +0200)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Wed, 25 Sep 2019 23:59:57 +0000 (01:59 +0200)
commitd7e13f128a4965f5d2bf510dc2314faa266f9dd7
tree1c74baf73ca4430bae04948662abb4d67fa5ae12
parent36b59c9661b7c24bb0271f813d2a02cac44de81a
Build: ESLint: forbid unused function parameters

This commit requires all function parameters to be used, not just the last one.
In cases where that's not possible as we need to match an external API, there's
an escape hatch of prefixing an unused argument with `_`.

This change makes it easier to catch unused AMD dependencies and unused
parameters in internal functions the API of which we may change at will, among
other things.

Unused AMD dependencies have been removed as part of this commit.

Closes gh-4381

(cherry-picked from 438b1a3e8a52d3e4efd8aba45498477038849c97)
17 files changed:
build/tasks/build.js
dist/.eslintrc.json
package.json
src/ajax.js
src/attributes/attr.js
src/core.js
src/core/access.js
src/core/camelCase.js
src/css.js
src/css/var/swap.js
src/deferred.js
src/effects.js
src/event/ajax.js
src/event/alias.js
src/offset.js
src/serialize.js
src/traversing.js