VS Code has great support for source code formatting. The editor has two explicit format actions: Format Document (Ctrl+Shift+I) - Format the entire active file. Format Selection (Ctrl+K Ctrl+F) - Format the selected text.
In VSCode, go 'Code -> Preferences -> Settings' and search for "python formatting black args". A few notes about line lengths in Python: PEP8 recommends a line length of 79 characters (72 for docstrings) Black sets line lengths to 88 characters by default.
According to the Visual Studio Code's user and workspace settings documentation, you can add rulers which mark specified columns.
Search for "ruler" in Settings. Click on the link to edit the .json file. Add the property below for rule at 80 characters.
Example setting:
// Columns at which to show vertical rulers
"editor.rulers": [80],
Navigation to follow
"editor.rulers": [80]
Version I'm using is 1.49.1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With