From f9043268b233115f031e1ac4ec7710012e5aec31 Mon Sep 17 00:00:00 2001 From: Bill Huang Date: Sat, 11 Jan 2025 20:38:08 +0800 Subject: [PATCH] Ignore import order check on jupyter notebooks --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 835f78e3f..608b1829d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,3 +70,4 @@ format.line-ending = "lf" # F: Pyflakes / E, W: pycodestyle / I: isort / NPY: numpy lint.select = ["F", "E", "W", "I", "NPY"] lint.ignore = ["E501"] # Ignore line length error +lint.per-file-ignores = {"*.ipynb" = ["I001"]}