I'm editing SublimeLinter prefences trying to set line lenth in 100, but I can't get it to work
I tried with
{
"linters": {
"pycodestyle": {
"ignore": "E501"
}
}
}
And
{
"linters": {
"pycodestyle": {
"max-line-length": 100
}
}
}
What am I doing wrong?