Skip to content

Commit

Permalink
Merge pull request #3 from hardcoretech/chore/bump_version
Browse files Browse the repository at this point in the history
chore(missing): bump to version v0.2.5
  • Loading branch information
cmj0121 authored May 17, 2022
2 parents 72a4971 + 3b652dd commit 7d3bef0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
45 changes: 43 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,53 @@
# Missing #
The simple [pre-commit][0] hook to find the missing but necessary files.

A simple [pre-commit][0] hook to find missing `__init__.py` that is required for unit test cases to be discovered.

## Example ##

Default setting, everything except `.git` will be scanned

```yaml
- repo: https://github.com/hardcoretech/missing
rev: v0.2.5
hooks:
- id: missing-init-py
```
Exclude according to .gitignore
```yaml
- repo: https://github.com/hardcoretech/missing
rev: v0.2.5
hooks:
- id: missing-init-py
args:
- --mode
- obey_gitignore
```
Only include git staged files
```yaml
- repo: https://github.com/hardcoretech/missing
rev: v0.2.5
hooks:
- id: missing-init-py
args:
- --mode
- staged_only
```
Exclude frontend and doc folder
```yaml
- repo: https://github.com/hardcoretech/missing
rev: v0.2.4
rev: v0.2.5
hooks:
- id: missing-init-py
args:
- --exclude
- frontend
- doc
```
[0]: https://pre-commit.com/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "missing"
version = "0.2.4"
version = "0.2.5"
description = ""
authors = ["PLM <[email protected]>"]

Expand Down

0 comments on commit 7d3bef0

Please sign in to comment.