-
-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Description
Hi,
I hope the tool could support whitespace minification for each line of code, similar to what pyminifier does. For example, the original code:
def test(name):
return f"Hello, {name}!"
name = input("Enter your name: ")
if name != "":
print(test(name))
else:
print("Please enter your name")
Should be minified to:
def test(name):
return f"Hello, {name}!"
name=input("Enter your name: ")
if name!="":
print(test(name))
else:
print("Please enter your name")
Additionally, I would like to request two more features:
-
Line Merging Option: It would be great if there could be an option to merge lines (default behavior could be to merge).
-
Indentation Choice: It would be useful if users could choose whether to use tabs or spaces for indentation.
Thanks!
Metadata
Metadata
Assignees
Labels
No labels