Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE REQUEST] Code formatter #198

Open
silvioprog opened this issue May 22, 2021 · 0 comments
Open

[FEATURE REQUEST] Code formatter #198

silvioprog opened this issue May 22, 2021 · 0 comments
Labels

Comments

@silvioprog
Copy link

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!

@arvanus arvanus added the feature label Jun 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants