Closed OyvindSabo closed 4 years ago
Consider that we want to format the following query with a max line length of 70:
g.V(). has('sell_price'). has('buy_price'). project('product', 'profit'). by('name'). by{ it.get().value('sell_price') - it.get().value('buy_price') };
With an indentation of 0 spaces it is formatted like this (as expected):
However, with an indentation of 20 spaces it is formatted like this:
I would expect it to be formatted like this:
Consider that we want to format the following query with a max line length of 70:
With an indentation of 0 spaces it is formatted like this (as expected):
However, with an indentation of 20 spaces it is formatted like this:
I would expect it to be formatted like this: