Skip to content

Commit

Permalink
Merge pull request #30 from lsst-sqre/tickets/DM-40160
Browse files Browse the repository at this point in the history
Accomodate new phalanx structure: tickets/DM-40160
  • Loading branch information
athornton authored Jul 21, 2023
2 parents 725d96d + 3bbcd37 commit c441529
Show file tree
Hide file tree
Showing 5 changed files with 706 additions and 556 deletions.
35 changes: 29 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,46 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.4.0
hooks:
- id: check-yaml
- id: trailing-whitespace
- id: check-toml

- repo: https://github.com/adrienverge/yamllint
rev: v1.32.0
hooks:
- id: yamllint
args:
- -c=.yamllint.yml

- repo: https://github.com/norwoodj/helm-docs
rev: v1.11.0
hooks:
- id: helm-docs
args:
- --chart-search-root=.
# The `./` makes it relative to the chart-search-root set above
- --template-files=./helm-docs.md.gotmpl
- --document-dependency-values=true

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
additional_dependencies:
- toml

- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.7.0
hooks:
- id: black

- repo: https://gitlab.com/pycqa/flake8
rev: 4.0.1
- repo: https://github.com/adamchainz/blacken-docs
rev: 1.15.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.7.0]

- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
13 changes: 13 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
extends: default

ignore: templates

rules:
line-length: disable
document-start: disable
indentation:
spaces: consistent
indent-sequences: consistent
truthy:
allowed-values: ['true', 'false']
check-keys: true
Loading

0 comments on commit c441529

Please sign in to comment.