Skip to content

Commit 49bb397

Browse files
authored
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
}

0 commit comments

Comments
 (0)