diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2025-03-14 09:22:46 -0400 |
---|---|---|
committer | Krinkle <krinkle@fastmail.com> | 2025-03-21 09:05:45 +0000 |
commit | f78b1d5c6b6338ebdf7e3fd290cf7281ccd59e90 (patch) | |
tree | 2b3ca9b39fb2f2b956c4ba8bc934eb069e94abd9 /resources/src/.eslintrc.json | |
parent | 4834c32e4a5b32530fce83de08585366f31c385b (diff) | |
download | mediawikicore-f78b1d5c6b6338ebdf7e3fd290cf7281ccd59e90.tar.gz mediawikicore-f78b1d5c6b6338ebdf7e3fd290cf7281ccd59e90.zip |
build: Fix and re-enable eslint rule unicorn/prefer-includes
Change-Id: I34bb289e941751ae4722c708511326a2a5431bfc
Diffstat (limited to 'resources/src/.eslintrc.json')
-rw-r--r-- | resources/src/.eslintrc.json | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/resources/src/.eslintrc.json b/resources/src/.eslintrc.json index d7947909902c..65809919efb7 100644 --- a/resources/src/.eslintrc.json +++ b/resources/src/.eslintrc.json @@ -10,15 +10,14 @@ "module": "readonly" }, "rules": { - "es-x/no-promise-prototype-finally": "off", "max-len": "off", + "es-x/no-promise-prototype-finally": "off", "no-jquery/no-done-fail": "off", "no-jquery/no-global-selector": "off", "jsdoc/no-undefined-types": [ 1, { "definedTypes": [ "Hooks" ] - } ], - "unicorn/prefer-includes": "off" + } ] } } |