Update eslint config in build page to fail on var usage

This commit is contained in:
flawedworld 2021-04-04 04:18:56 +01:00 committed by Daniel Micay
parent 603b777ecd
commit 0e3232dccd

View File

@ -1225,6 +1225,9 @@ rm android-cts-media-1.5.zip</pre>
"semi": [ "semi": [
"error", "error",
"always" "always"
],
"no-var": [
"error"
] ]
} }
}</pre> }</pre>