Tag: Visual Studio Code

  • Auto-Format Your Python Code in VSCode

    I always prefer to keep the code following the standards and style guides defined by the language or the community that has become popular. Doing so will improve readability, and consistency when coding collaboratively. Ultimately we can focus on actual code and not spend time and worry about styling. For Python, my favorite one is…

  • Essential Configurations for Visual Studio Code (VSC)

    I find the below basic settings very useful and hope it will be useful for you too to keep your code nice and tidy. 1. Insert Final Newline It is recommended to add an empty line at the end of the file as some old tools might misbehave without it and also it helps clean…