From d7bb8121e8ffca6fe2e10ee4b18788088d19120d Mon Sep 17 00:00:00 2001 From: Mikhail Date: Sun, 31 Mar 2024 13:10:17 +0200 Subject: [PATCH] Ignore certs --- .gitignore | 1 + .pre-commit-config.yaml | 26 +------------------------- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 75d301e..63bdf99 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /db.sqlite .idea/ .DS_Store +certs/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9786370..20613a5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,31 +4,7 @@ repos: hooks: - id: check-toml - id: check-vcs-permalinks - # - id: end-of-file-fixer + - id: end-of-file-fixer - id: fix-byte-order-marker - id: mixed-line-ending - id: trailing-whitespace - - # - repo: https://github.com/tconbeer/sqlfmt - # rev: v0.18.0 - # hooks: - # - id: sqlfmt - # language_version: python - - - repo: https://github.com/sqlfluff/sqlfluff - rev: 3.0.3 - hooks: - - id: sqlfluff-lint - - id: sqlfluff-fix - -# - repo: https://github.com/pre-commit/mirrors-prettier -# rev: "v3.1.0" -# hooks: -# - id: prettier -# types_or: [ sql ] - -# - repo: https://github.com/doublify/pre-commit-rust -# rev: master -# hooks: -# - id: fmt -# args: ['--verbose', '--edition', '2018', '--']