From aba961bf4a6736f69b0ca9b35a341810b630c214 Mon Sep 17 00:00:00 2001 From: Julien Hertout <57949794+jhertout@users.noreply.github.com> Date: Fri, 10 Nov 2023 16:38:49 +0100 Subject: [PATCH] Update RULES.md: change column order in "refused rules" array --- RULES.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RULES.md b/RULES.md index 8fb779a7a..b6be5f501 100644 --- a/RULES.md +++ b/RULES.md @@ -59,7 +59,7 @@ Some are applicable for different technologies. This table lists rules proposed by the community but refused in ecoCode plugins with the justification. -| Name | Description | Language | Invalidation | -|------------|------------|------------|------------| -| Use numpy array instead of standard list | The use of numpy library to perform array manipulation is more energy efficient than the use of the standard list functions. | Python | [Github discussion with measures](https://github.com/green-code-initiative/ecoCode/issues/132) | -| HTML page must contain a doctype tag | The difference in performance is negligible, this rule is more related to the user experience. | HTML | [Github discussion with sources](https://github.com/green-code-initiative/ecoCode/issues/103) | +| Language | Name | Description | Invalidation | +|----------|------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------| +| Python | Use numpy array instead of standard list | The use of numpy library to perform array manipulation is more energy efficient than the use of the standard list functions. | [Github discussion with measures](https://github.com/green-code-initiative/ecoCode/issues/132) | +| HTML | HTML page must contain a doctype tag | The difference in performance is negligible, this rule is more related to the user experience. | [Github discussion with sources](https://github.com/green-code-initiative/ecoCode/issues/103) |