Within my configuration file .eslintrc
, I have set
"object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }],
and "max-len": "off"
. However, objects like
const something = {a: 5, ffsdfasdasdsddddd: 'asdasdasdddddddddddssssssddddddddd'};
are still being split into multiple lines if they exceed 80 characters. How can I prevent this from happening?