Skip to content

Commit

Permalink
pre-commitの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
FujisakiEx committed Jul 14, 2023
1 parent 5bca530 commit c151e65
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/python-poetry/poetry
rev: '1.3.1'
hooks:
- id: poetry-export
name: poetry-export
args: ["--without-hashes", "-o", "requirements.txt" ]
- id: poetry-export
name: poetry-export-dev
args: ["--without-hashes", "--with", "dev", "-o", "requirements-dev.txt" ]
- id: poetry-export
name: poetry-export-test
args: ["--without-hashes", "--with", "test", "-o", "requirements-test.txt" ]
- id: poetry-export
name: poetry-export-license
args: ["--without-hashes", "--with", "license", "-o", "requirements-license.txt" ]
- repo: local
hooks:
- id: pysen-lint
Expand All @@ -10,8 +25,8 @@ repos:
types: [file, python]
stages: [push]
pass_filenames: false
- id: poetry-export
name: poetry-export
entry: python poetry_export_all.py
- id: poetry-export-check
name: poetry-export-check
entry: python poetry_export_check.py
language: python
stages: [commit]
File renamed without changes.

0 comments on commit c151e65

Please sign in to comment.