Is there any settings to disable nested lists collapse to `...`. It makes really hard to debug  Here's example how PyCharm handles it and that's how I would like in vscode:  Test code: ``` x = [[(['aa', 1], '5.0')], [(('bb', 2), '6.7')], [(('cc', 1), '1.2')], [(('dd', 1), '3.2'), (('ee', 2), '10.0')]] print(x) ```