Sublime - PyCodeStyle - Line Length Property

17 Views Asked by At

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?

0

There are 0 best solutions below