Skip to content

Commit

Permalink
refactor: update .pre-commit-config file
Browse files Browse the repository at this point in the history
  • Loading branch information
kluge7 committed Oct 11, 2024
1 parent 6f489c3 commit 6d38c1e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ repos:
rev: 5.13.2
hooks:
- id: isort
language_version: python3.11

# Code Formatters
- repo: https://github.com/psf/black
rev: 24.8.0
hooks:
- id: black
language_version: python3.11

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.0
Expand All @@ -38,24 +36,22 @@ repos:
rev: v2.3.0
hooks:
- id: codespell
args: ['--write-changes']

# Linters and Static Analysis Tools
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
- id: mypy
args: ["--explicit-package-bases"]
language_version: python3.11

- repo: https://github.com/PyCQA/pylint
rev: v3.3.1
hooks:
- id: pylint
language_version: python3.11

- repo: https://github.com/PyCQA/bandit
rev: 1.7.10
hooks:
- id: bandit
language_version: python3.11
args: ["--severity-level", "medium"]

0 comments on commit 6d38c1e

Please sign in to comment.