clarkyu2016 / sql-beautify

VS Code extension that beautifies SQL(HQL).
MIT License
60 stars 20 forks source link

where后面and缩进问题 #10

Open ljfre opened 3 years ago

ljfre commented 3 years ago

where 后面含有and,格式化完会变成 where and 可否添加缩进变为

where
     and
clarkyu2016 commented 3 years ago

感谢您的反馈! 插件设计原则参考https://www.alibabacloud.com/help/zh/doc-detail/137491.htm?spm=a2c63.p38356.b99.211.1cfd6f98pnv90j 我个人感觉是当代码行数过多时且有嵌套查询,and缩进会和子查询缩进混淆😂(还有些问题,比如and缩进了,那后面的group by,order by缩不缩进)。不过如果之后也有相类似反馈的话,后续可以增加一个可选选项😂。

BryceQin commented 2 years ago

同样希望where 后and可以缩进,至于group by,order by缩不缩进,按照腾讯的代码风格是不缩进的。