go-jsonnet/linter/testdata/library-like-use.linter.golden
Stanisław Barzowski 8fcbda5b50 Linter
2020-08-13 21:06:34 +02:00

66 lines
1.6 KiB
Plaintext

testdata/library-like-use:4:5-17 Called value must be a function, but it is assumed to be a number
lib.number(),
testdata/library-like-use:6:29-30 Too many arguments, there can be at most 2, but 3 provided
lib.addTwoNumbers(1, 2, 3),
testdata/library-like-use:10:30-31 Too many arguments, there can be at most 2, but 3 provided
lib.addTwoNumbers2(1, 2, 3),
testdata/library-like-use:13:5-29 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[0].a,
testdata/library-like-use:13:5-31 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[0].a,
testdata/library-like-use:14:5-29 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[0].b,
testdata/library-like-use:14:5-31 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[0].b,
testdata/library-like-use:15:5-29 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[1].a,
testdata/library-like-use:15:5-31 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[1].a,
testdata/library-like-use:16:5-29 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[1].b,
testdata/library-like-use:16:5-31 Indexed value is neither an array nor an object nor a string
lib.nested.twoObjects[1].b,
testdata/library-like-use:17:5-27 Indexed object has no field "nonexistent"
lib.nested.nonexistent,
testdata/library-like-use:18:5-20 Indexed object has no field "nonexistent"
lib.nonexistent,