Skip to content

Commit 49bb397

Browse files
authoredOct 17, 2024··
Build: Fix the ESLint config for demos
The ESLint config for `demos` extends the one for the `ui` directory. However, the `ui` one used to not be a root one, making the `demos` one effectively not depend on the `jquery` preset. Fix that and fix lots of lint violations in `demos/search.js`. Closes gh-2303
1 parent 3934c68 commit 49bb397

File tree

3 files changed

+586
-578
lines changed

3 files changed

+586
-578
lines changed
 

‎demos/.eslintrc.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"root": true,
33

4-
"extends": "../ui/.eslintrc.json"
4+
"extends": "../ui/.eslintrc.json",
5+
6+
"globals": {
7+
"require": true
8+
}
59
}

‎demos/search.js

+577-577
Large diffs are not rendered by default.

‎ui/.eslintrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"root": true,
3+
4+
"extends": "jquery",
5+
26
"parserOptions": {
37
"ecmaVersion": 5
48
},

0 commit comments

Comments
 (0)
Please sign in to comment.