This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| settings = { | |
| pylsp = { | |
| plugins = { | |
| pycodestyle = { | |
| ignore = {'E501'}, -- This is the Error code for line too long. | |
| maxLineLength = 200 -- This sets how long the line is allowed to be. Also has effect on formatter. | |
| }, | |
| }, | |
| }, |