aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-05-13 22:25:11 +0200
committerGitHub <noreply@github.com>2019-05-13 22:25:11 +0200
commit438b1a3e8a52d3e4efd8aba45498477038849c97 (patch)
treee5d7f6331777cda9da65b64e137624ac166f3812 /dist
parent9ec09c3b4aa5182c2a8b8f51afb861b685a4003c (diff)
downloadjquery-438b1a3e8a52d3e4efd8aba45498477038849c97.tar.gz
jquery-438b1a3e8a52d3e4efd8aba45498477038849c97.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
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",