From f0854e58ba015f2182e467398870725e0d04b564 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Tue, 25 Nov 2025 12:30:55 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20ajouter=20le=20fichier=20.python-versio?= =?UTF-8?q?n=20et=20mettre=20=C3=A0=20jour=20les=20r=C3=A8gles=20de=20lint?= =?UTF-8?q?ing=20dans=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- M2/Reinforcement Learning/.python-version | 1 + pyproject.toml | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 M2/Reinforcement Learning/.python-version diff --git a/M2/Reinforcement Learning/.python-version b/M2/Reinforcement Learning/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/M2/Reinforcement Learning/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/pyproject.toml b/pyproject.toml index 9bde5f9..2858df5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,19 @@ select = [ "I", # isort "B", # flake8-bugbear "C4", # flake8-comprehensions - "UP", # pyupgrade + "UP", # pyupgrade, + "C4", # flake8-comprehensions + "FIX", # auto-fixable issues + "G", # flake8-logging-format + "Q", # flake8-quotes + "RET", # flake8-return + "SLF", # flake8-self + "SIM", # flake8-simplify + "ARG", # flake8-unused-arguments + "PD", # flake8-pandas-vet + "DOC", # pydocstyle + "D", # pydocstyle + "PL", # pylint ] # Désactiver certaines règles