Closed OyvindSabo closed 3 years ago
Considered the following query:
g.V().where(map{ buyPrice = it.get().value('buy_price'); sellPrice = it.get().value('sell_price'); sellPrice - buyPrice; }.is(gt(50)))
Formatted with a max line length of 60 characters, it is currently formatted like this:
but it should look like this:
With a max line length of 45 characters it is currently formatted like this:
g.V(). where( map{ buyPrice = it.get().value('buy_price'); sellPrice = it.get().value('sell_price'); sellPrice - buyPrice; }.is(gt(50)))
But it should be formatted like this:
WIth a max line length of 40 characters it is currently correctly formatted like this:
g.V(). where( map{ buyPrice = it.get().value('buy_price'); sellPrice = it.get().value('sell_price'); sellPrice - buyPrice; }. is(gt(50)))
Considered the following query:
Formatted with a max line length of 60 characters, it is currently formatted like this:
but it should look like this:
With a max line length of 45 characters it is currently formatted like this:
But it should be formatted like this:
WIth a max line length of 40 characters it is currently correctly formatted like this: