From ee3bfbc97e01355d18f44f0e6a4990101a629b80 Mon Sep 17 00:00:00 2001 From: pared Date: Sun, 26 Feb 2023 13:33:45 +0000 Subject: [PATCH] update template --- .cruft.json | 2 +- .pre-commit-config.yaml | 2 +- setup.cfg | 12 ++++++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.cruft.json b/.cruft.json index b0f680c..a528057 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/iterative/cookiecutter-dvc-plugin", - "commit": "fef394b15f2800a69b5ee11ddcc9e4c5339ae5f5", + "commit": "b5468040d24fba172720eaa61fb37dab48bda808", "checkout": null, "context": { "cookiecutter": { diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2f51cd7..d4449c3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: isort language_version: python3 repo: https://github.com/timothycrosley/isort - rev: 5.9.3 + rev: 5.12.0 - hooks: - id: flake8 language_version: python3 diff --git a/setup.cfg b/setup.cfg index df7b257..63d18ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -72,11 +72,15 @@ tests = [flake8] ignore= - E203, # Whitespace before ':' - E266, # Too many leading '#' for block comment - W503, # Line break occurred before a binary operator - P1, # unindexed parameters in the str.format, see: + # Whitespace before ':' + E203, + # Too many leading '#' for block comment + E266, + # Line break occurred before a binary operator + W503, + # unindexed parameters in the str.format, see: # https://pypi.org/project/flake8-string-format/ + P1, max_line_length = 79 max-complexity = 15 select = B,C,E,F,W,T4,B902,T,P