From 84d3138647254bbdbcef13337fd8ed9119a9d88d Mon Sep 17 00:00:00 2001
From: clokep
Date: Wed, 21 Dec 2022 18:09:08 +0000
Subject: deploy: 14abf22dd696129f69cd1a14b2044a4ca6cb1972
---
develop/code_style.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'develop/code_style.html')
diff --git a/develop/code_style.html b/develop/code_style.html
index c40c012932..c352b63481 100644
--- a/develop/code_style.html
+++ b/develop/code_style.html
@@ -155,7 +155,7 @@ errors in code.
- black, a source code formatter;
- isort, which organises each file's imports;
-- flake8, which can spot common errors; and
+- ruff, which can spot common errors; and
- mypy, a type checker.
Install them with:
@@ -167,7 +167,7 @@ errors in code.
It's worth noting that modern IDEs and text editors can run these tools
automatically on save. It may be worth looking into whether this
functionality is supported in your editor for a more convenient
-development workflow. It is not, however, recommended to run flake8
or mypy
+development workflow. It is not, however, recommended to run mypy
on save as they take a while and can be very resource intensive.