Can you configure reformat rules for arrays and lists?
Reformatting in PyCharm seems to forcefully indent arrays from:
Into
Is there a way to disable indentation for arrays while Reformatting?
arr = {
"inner_arr" : {
"" : "",
},
"" : ""
}
Into
arr = {
"inner_arr" : {
"" : "",
},
"" : ""
}
Is there a way to disable indentation for arrays while Reformatting?
Please sign in to leave a comment.