From 320f4a48ad1531cc360bd49208aa722da71f4af9 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Sat, 26 Aug 2023 18:36:17 -0400 Subject: [PATCH] update --- .pre-commit-config.yaml | 8 ++++---- pyproject.toml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 498a8a26f..4836d4120 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,15 +18,15 @@ repos: - id: check-toml - id: mixed-line-ending # Python -- repo: https://github.com/psf/black - rev: 23.7.0 - hooks: - - id: black-jupyter - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.0.278 hooks: - id: ruff args: ["--fix"] +- repo: https://github.com/psf/black-pre-commit-mirror + rev: 23.7.0 + hooks: + - id: black-jupyter # numpydoc - repo: https://github.com/Carreau/velin rev: 0.0.12 diff --git a/pyproject.toml b/pyproject.toml index 6b1e1383d..3cf5e8a7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -145,6 +145,7 @@ ignore = [ "E501", # line too long "E741", # ambiguous variable name "E402", # module level import not at top of file + "D205", # 1 blank line required between summary line and description ] [tool.ruff.pydocstyle]