When coding in Python using Replit, I get the annoying warning "Line too long" (pyright-extended).
How can I get Replit to always ignore displaying this type of warnings?
Just add 'E501'
to the "[tool.ruff]" section of the "pyproject.toml"-file, to disable the warning in the default python template.
https://ask.replit.com/t/python-88-characters-maximum-in-a-line/74941