We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Have you ever been weirded out by code? https://bsky.app/profile/selbstmut.bsky.social/post/3leyqquzkns2u
This is an extention of #152
//the good if (cond) { doStuff(); } //the bad if (cond) doStuff(); //the ugly if (cond) /* EMPTY */;
Should I disallow empty function bodies?
Should I require bodies to be enclosed in braces?
Should I add pass as an actual keyword?
pass
The text was updated successfully, but these errors were encountered:
//these are allowed /* EMPTY */; if (true) { } if (true) pass; //these are not allowed if (true) /* EMPTY */;
Sorry, something went wrong.
90ffe9b
No branches or pull requests
Have you ever been weirded out by code? https://bsky.app/profile/selbstmut.bsky.social/post/3leyqquzkns2u
This is an extention of #152
Should I disallow empty function bodies?
Should I require bodies to be enclosed in braces?
Should I add
pass
as an actual keyword?The text was updated successfully, but these errors were encountered: