An Intro to Ruff – An Extremely Fast Python Linter
What is linting? A linter will help you find syntactical and stylistic issues with your code. Python has several great 3rd party linting tools. Here are the two most famous ones: pylint Flake8 Innumerable projects use Flake8 to help find problems in their code before it is committed. Many also use pylint, but you won’t …
An Intro to Ruff – An Extremely Fast Python Linter Read More »