Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/pkg/river/printer/testdata/array_comments.expect
4096 views
// array_comments.in expects that comments in arrays are formatted to
// retain the indentation level of elements within the arrays.

attr = [ // Inline comment
	0, 1, 2, // Inline comment
	3, 4, 5, // Inline comment
	// Trailing comment
]

attr = [
	0,
	// Element-level comment
	1,
	// Element-level comment
	2,
	// Trailing comment
]