-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Initial code:
int main () {
print ("%i".printf(0));
return 0;
}
Command execute:
~/git/temp
> vala-lint vala.vala
vala.vala
2.21 error Expected space before paren space-before-paren
1 error, 0 warnings
~/git/temp [1]
> vala-lint --fix vala.vala
No mistakes found
Code after commands:
int main () {
print ("%i".printf( 0));
return 0;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels