mirror of
https://gitee.com/ShopeX/ECShopX
synced 2026-08-06 20:16:24 +08:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
// This file has intentional lint issues for testing
|
|
var unusedVariable = 5;
|
|
console.log("hello")
|
|
console.log("hello")
|
|
console.log("hello")
|
|
|
|
function tooManyParams(a, b, c, d, e, f) {
|
|
return a + b;
|
|
}
|
|
|
|
var x = 1
|
|
var y = 2 |