Skip to content

Commit

Permalink
fix: update pre-commit config
Browse files Browse the repository at this point in the history
  • Loading branch information
rouxm-cs committed Nov 29, 2024
1 parent d8dcb55 commit 240db6c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,35 @@ repos:
hooks:
- id: isort
name: isort
stages: [commit]
stages: [pre-commit]
language: system
entry: isort
types: [python]

- id: black
name: black
stages: [commit]
stages: [pre-commit]
language: system
entry: black
types: [python]

- id: flake8
name: flake8
stages: [commit]
stages: [pre-commit]
language: system
entry: flake8
types: [python]

- id: pylint
name: PyLint
stages: [commit]
stages: [pre-commit]
language: system
entry: pylint --rcfile=.pylintrc
files: \.py$

- id: sphinx-build
name: Build Sphinx Doc
stages: [push]
stages: [pre-push]
entry: make docs
language: system
files: ^(docs/.*|cars/.*)$
Expand All @@ -40,6 +40,6 @@ repos:
- id: jupyter-nb-clear-output
name: jupyter-nb-clear-output
files: \.ipynb$
stages: [commit]
stages: [pre-commit]
language: system
entry: jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace

0 comments on commit 240db6c

Please sign in to comment.