From 03baf5fd8d6f2a364c01ce8a090f43944aaa618e Mon Sep 17 00:00:00 2001 From: Kevin Du Date: Fri, 21 Jun 2024 13:43:20 +0200 Subject: [PATCH] remove precommit because it makes diffs hard --- .pre-commit-config.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index 81bc350..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,26 +0,0 @@ -repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.3.0 - hooks: - - id: check-yaml - args: ['--unsafe'] - - id: end-of-file-fixer - - id: trailing-whitespace - - repo: https://github.com/psf/black - rev: 22.10.0 - hooks: - - id: black - args: - - --line-length=120 - # It is recommended to specify the latest version of Python - # supported by your project here, or alternatively use - # pre-commit's default_language_version, see - # https://pre-commit.com/#top_level-default_language_version - language_version: python3 - - repo: https://github.com/pycqa/flake8 - rev: 5.0.4 # pick a git hash / tag to point to - hooks: - - id: flake8 - args: - - "--max-line-length=120" - - "--ignore=E203,E266,E501,W503,F403,F401,E402,F405,F821"