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?
-
"I cant get it to work" is unclear. Whats the issue? What do you want to happen?thetaco– thetaco2024年03月01日 17:06:05 +00:00Commented Mar 1, 2024 at 17:06
-
Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking.Community– Community Bot2024年03月01日 17:06:10 +00:00Commented Mar 1, 2024 at 17:06
-
The problem is that the line length settings are not really changing, and I keep getting <79 characters per line as an error (default value) despite the configuration. For some reason it seems that the configuration I'm modifying doesn't work.barrichelos– barrichelos2024年03月03日 07:30:08 +00:00Commented Mar 3, 2024 at 7:30
lang-py