aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-05-13 22:25:11 +0200
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-09-26 01:59:57 +0200
commitd7e13f128a4965f5d2bf510dc2314faa266f9dd7 (patch)
tree1c74baf73ca4430bae04948662abb4d67fa5ae12 /dist
parent36b59c9661b7c24bb0271f813d2a02cac44de81a (diff)
downloadjquery-d7e13f128a4965f5d2bf510dc2314faa266f9dd7.tar.gz
jquery-d7e13f128a4965f5d2bf510dc2314faa266f9dd7.zip
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)
Diffstat (limited to 'dist')
-rw-r--r--dist/.eslintrc.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/.eslintrc.json b/dist/.eslintrc.json
index c2aa05c5e..45ba0c520 100644
--- a/dist/.eslintrc.json
+++ b/dist/.eslintrc.json
@@ -7,9 +7,10 @@
// That is okay for the built version
"no-multiple-empty-lines": "off",
- // Because sizzle is not compatible to jquery code style
+ // Sizzle is not compatible with jQuery code style
"no-nested-ternary": "off",
"no-unused-expressions": "off",
+ "no-unused-vars": "off",
"lines-around-comment": "off",
"space-in-parens": "off",
"camelcase": "off",