mariuz / flamerobin

FlameRobin is a database administration tool for Firebird RDBMS. Our goal is to build a tool that is: lightweight (small footprint, fast execution) cross-platform (Linux, Windows, Mac OS X, FreeBSD) dependent only on other Open Source software
http://flamerobin.org
MIT License
214 stars 66 forks source link

[FEATURE REQUEST] Code formatter #198

Open silvioprog opened 3 years ago

silvioprog commented 3 years ago

Hi there.

It would be nice a feature allowing code formation. For example, supposing this unformatted SQL:

SELECT id,
    name  ,     
      age    FROM 
 customers

it could be formatted to:

SELECT
  id,
  name,
  age
FROM 
  customers

or, if configured:

SELECT id, name, age
FROM customers

or at least:

SELECT id, name, age FROM customers

Thanks a lot!