Reputation: 1738
In VS Code, Python: How can keyword arguments:
number = models.CharField(
max_length=10, unique=True, verbose_name=_('Contract number'))
be automatically formatted into separate lines:
number = models.CharField(
max_length=10,
unique=True,
verbose_name=_('Contract number')
)
I wasn't able to find such configuration option, is there a way to archive/force the above formatting style?
Upvotes: 0
Views: 231