From 1cae5b54448e1c33c4a661d8f011aa957fb8eeaf Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Mon, 28 Mar 2022 13:14:22 +0200 Subject: [PATCH] DOC: Badge for deprecated rules --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index baee8dd..5703aa7 100644 --- a/README.md +++ b/README.md @@ -57,10 +57,10 @@ Simplifying Comparations: * `SIM201`: Use 'a != b' instead of 'not a == b' ([example](#SIM201)) * `SIM202`: Use 'a == b' instead of 'not a != b' ([example](#SIM202)) * `SIM203`: Use 'a not in b' instead of 'not (a in b)' ([example](#SIM203)) -* `SIM204`: Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) -* `SIM205`: Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) -* `SIM206`: Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) -* `SIM207`: Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) +* `SIM204`: ![](https://img.shields.io/badge/-removed-lightgrey) Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) +* `SIM205`: ![](https://img.shields.io/badge/-removed-lightgrey) Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) +* `SIM206`: ![](https://img.shields.io/badge/-removed-lightgrey) Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) +* `SIM207`: ![](https://img.shields.io/badge/-removed-lightgrey) Moved to [flake8-scream](https://github.com/MartinThoma/flake8-scream) due to [issue 116](https://github.com/MartinThoma/flake8-simplify/issues/116) * `SIM208`: Use 'a' instead of 'not (not a)' ([example](#SIM208)) * `SIM210`: Use 'bool(a)' instead of 'True if a else False' ([example](#SIM210)) * `SIM211`: Use 'not a' instead of 'False if a else True' ([example](#SIM211))