From 951be5163919c3742aaca68c4ca2111f508d2e5e Mon Sep 17 00:00:00 2001 From: troyraen Date: Sun, 11 Feb 2024 05:14:36 -0800 Subject: [PATCH] drop .pre-commit-config.yaml --- .pre-commit-config.yaml | 40 ---------------------------------------- 1 file changed, 40 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 2a7157f..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,40 +0,0 @@ -repos: -# make bash scripts more readable -- repo: https://github.com/lovesegfault/beautysh - rev: v6.2.1 - hooks: - - id: beautysh -# blackify python files -- repo: https://github.com/psf/black - rev: 22.1.0 - hooks: - - id: black -# run pep8 on python files -- repo: https://github.com/pre-commit/mirrors-autopep8 - rev: 'v1.6.0' - hooks: - - id: autopep8 - args: [-i, --max-line-length=120] -# lint markdown files -- repo: https://github.com/executablebooks/mdformat - rev: 0.7.13 - hooks: - - id: mdformat - additional_dependencies: - - mdformat-beautysh - - mdformat-black - - black==22.1.0 - - mdformat-config - - mdformat-gfm - - mdformat-toc - - mdformat-web -- repo: https://github.com/pycqa/isort - rev: 5.6.4 - hooks: - - id: isort - args: ["--profile", "black", "--filter-files", "--force-sort-within-sections"] -# - repo: https://github.com/pycqa/flake8 -# rev: 4.0.1 -# hooks: -# - id: flake8 -# additional_dependencies: [flake8-docstrings]