Search code examples
pythonsuppress-warningsreplitruff

How to suppress "Line too long" warning (pyright-extended) in Replit Python?


When coding in Python using Replit, I get the annoying warning "Line too long" (pyright-extended).

enter image description here

How can I get Replit to always ignore displaying this type of warnings?


Solution

  • Just add 'E501' to the "[tool.ruff]" section of the "pyproject.toml"-file, to disable the warning in the default python template.

    pyproject.toml

    https://ask.replit.com/t/python-88-characters-maximum-in-a-line/74941