-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,33 @@ | ||
# Nonemoji | ||
|
||
自维护的 gitmoji-cli,删减了部分 emoji | ||
|
||
## 安装 | ||
|
||
```bash | ||
poetry add nonemoji --dev | ||
``` | ||
|
||
## pre-commit 使用 | ||
|
||
```yaml | ||
# .pre-commit-config.yaml | ||
default_install_hook_types: [pre-commit, prepare-commit-msg] | ||
repos: | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.10.1 | ||
hooks: | ||
- id: isort | ||
stages: [commit] | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.6.0 | ||
hooks: | ||
- id: black | ||
stages: [commit] | ||
|
||
- repo: https://github.com/nonebot/nonemoji | ||
rev: v0.1.1 | ||
hooks: | ||
- id: nonemoji | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nonemoji" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "Simple gitmoji cli written in python" | ||
authors = ["jigsaw <[email protected]>", "yanyongyu <[email protected]>"] | ||
license = "MIT" | ||
|