mirror of
https://github.com/github/codeql.git
synced 2026-05-01 19:55:15 +02:00
JS: Update OK-style comments to $-style
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
var a = [], // OK
|
||||
b = [1], // OK
|
||||
c = [1, 2], // OK
|
||||
d = [1, , 2], // NOT OK
|
||||
e = [1,], // OK
|
||||
f = [1, 2, ,], // NOT OK
|
||||
g = [,1]; // NOT OK
|
||||
var a = [],
|
||||
b = [1],
|
||||
c = [1, 2],
|
||||
d = [1, , 2], // $ Alert
|
||||
e = [1,],
|
||||
f = [1, 2, ,], // $ Alert
|
||||
g = [,1]; // $ Alert
|
||||
|
||||
Reference in New Issue
Block a user