Skip to content

Commit

Permalink
fix: autoformat files
Browse files Browse the repository at this point in the history
  • Loading branch information
fyliu committed May 10, 2024
1 parent 8505481 commit a4a5963
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/add-seed-data-to-a-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ We need to add seed data for the [Replace with TABLE NAME] table, because it won
- 1.02 tables folder: https://github.com/hackforla/peopledepot/blob/main/app/core/migrations/

#### Resources gathered during the completion of this issue
- 2.01 table:
- 2.02 json file (after commit):
- 2.01 table:
- 2.02 json file (after commit):
- 2.03 script that adds seed data:
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ repos:
hooks:
- id: blacken-docs
additional_dependencies:
- black==24.2.0
- black==24.2.0

- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
exclude: '^app/core/migrations/|^app/data/migrations/|^app/core/scripts'
exclude: "^app/core/migrations/|^app/data/migrations/|^app/core/scripts"
args: [--max-line-length=119, --max-complexity=4, --pytest-fixture-no-parentheses]
additional_dependencies:
[
Expand Down Expand Up @@ -108,7 +108,7 @@ repos:
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- id: shellcheck

# - repo: https://github.com/econchick/interrogate
# rev: 1.4.0
Expand All @@ -128,7 +128,7 @@ repos:
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
args: [--fix]
exclude: ^app/core/migrations/
# Run the formatter.
- id: ruff-format
Expand Down Expand Up @@ -175,4 +175,4 @@ repos:
pass_filenames: false

ci:
skip: [check-django-migrations]
skip: [check-django-migrations]

0 comments on commit a4a5963

Please sign in to comment.