We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arrays, if they only contain values, and fit in a single line should not be broken up.
This:
{ 202: { 0: "12", 1: "0", 4: "0", 10: "0", 13: "0", 21: "110", 25: "200", 26: "0", 35: [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0 ], 37: [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], 68: "237", 82: "40" }, 204: { 1: "28", 10: [ 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ] }, 255: { }, timestamp: "Fri Feb 13 10:15:11 2015" }
Should instead be this:
{ 202: { 0: "12", 1: "0", 4: "0", 10: "0", 13: "0", 21: "110", 25: "200", 26: "0", 35: [0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0], 37: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], 68: "237", 82: "40" }, 204: { 1: "28", 10: [0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0] }, 255: { }, timestamp: "Fri Feb 13 10:15:11 2015" }
Also when an element is collapsed, i'd expect to see at least the first 50-80 characters before ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Arrays, if they only contain values, and fit in a single line should not be broken up.
This:
Should instead be this:
Also when an element is collapsed, i'd expect to see at least the first 50-80 characters before ...
The text was updated successfully, but these errors were encountered: