Skip to content

Commit

Permalink
Add Max to CODEOWNERS; update pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Oct 1, 2024
1 parent b6dc58b commit 2e79cdb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
#

# default rule
* @aaschaer @ada-globus @derek-globus @kurtmckee @sirosen
* @aaschaer @ada-globus @derek-globus @kurtmckee @MaxTueckeGlobus @sirosen

# Flows service
**/flows/ @ada-globus @derek-globus @kurtmckee @sirosen
docs/services/flows.rst @ada-globus @derek-globus @kurtmckee @sirosen
**/flows/ @ada-globus @derek-globus @kurtmckee @MaxTueckeGlobus @sirosen
docs/services/flows.rst @ada-globus @derek-globus @kurtmckee @MaxTueckeGlobus @sirosen

# Timer service
**/timer/ @ada-globus @derek-globus @kurtmckee @sirosen
docs/services/timer.rst @ada-globus @derek-globus @kurtmckee @sirosen
**/timer/ @ada-globus @derek-globus @kurtmckee @MaxTueckeGlobus @sirosen
docs/services/timer.rst @ada-globus @derek-globus @kurtmckee @MaxTueckeGlobus @sirosen
18 changes: 11 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ repos:
- id: check-merge-conflict
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.6
rev: 0.29.3
hooks:
- id: check-github-workflows
- id: check-readthedocs
- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: ["--py37-plus"]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.4.2
rev: 24.8.0
hooks:
- id: black
name: "Autoformat python files"
Expand All @@ -28,28 +28,32 @@ repos:
- id: blacken-docs
additional_dependencies: ['black==23.9.1']
- repo: https://github.com/PyCQA/flake8
rev: 7.1.0
rev: 7.1.1
hooks:
- id: flake8
name: "Lint python files"
additional_dependencies:
- 'flake8-bugbear==24.2.6'
- 'flake8-comprehensions==3.14.0'
- 'flake8-bugbear==24.8.19'
- 'flake8-comprehensions==3.15.0'
- 'flake8-typing-as-t==0.0.3'
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
name: "Sort python imports"
- repo: https://github.com/sirosen/slyp
rev: 0.6.1
rev: 0.7.1
hooks:
- id: slyp
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
args: ["--ignore-regex", "https://[^\\s]*"]
- repo: https://github.com/sirosen/texthooks
rev: 0.6.7
hooks:
- id: alphabetize-codeowners

# custom local hooks
- repo: local
Expand Down

0 comments on commit 2e79cdb

Please sign in to comment.