CodeSnack IDE uses pycodestyle as a linter for Python code styling. We are not changing default values for any parameters, and we recommend you not to change that to keep your code well-formatted and readable. But if you still need to configure the linter, please refer to pycodestyle configuration documentation.
Example: How to use more long lines without getting E501 warning?
Solution:
Add a setup.cfg
file to the root of your project. The file should have the following content:
[pycodestyle]
max-line-length = 160