check-empty 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {check_empty-0.1.0 → check_empty-0.2.0}/PKG-INFO +4 -4
- {check_empty-0.1.0 → check_empty-0.2.0}/README.md +3 -3
- {check_empty-0.1.0 → check_empty-0.2.0}/pyproject.toml +1 -1
- {check_empty-0.1.0 → check_empty-0.2.0}/AUTHORS.md +0 -0
- {check_empty-0.1.0 → check_empty-0.2.0}/LICENSE +0 -0
- {check_empty-0.1.0 → check_empty-0.2.0}/check_empty/__init__.py +0 -0
- {check_empty-0.1.0 → check_empty-0.2.0}/check_empty/__main__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: check-empty
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Command-line utility, as well as a hook usable by the Python pre-commit framework, to ensure that selected files are empty.
|
|
5
5
|
Keywords: check,command-line,empty,github-action,hook,lightweight,pre-commit,prek,tool,utility
|
|
6
6
|
Author: Jonathan Dung
|
|
@@ -64,7 +64,7 @@ As a pre-commit hook:
|
|
|
64
64
|
# .pre-commit-config.yaml
|
|
65
65
|
repos:
|
|
66
66
|
- repo: https://github.com/jonathandung/check-empty
|
|
67
|
-
rev: v0.
|
|
67
|
+
rev: v0.2.0 # repository version
|
|
68
68
|
hooks:
|
|
69
69
|
- id: check-empty # the hook
|
|
70
70
|
args: # example list of arguments
|
|
@@ -81,7 +81,7 @@ equivalent in `prek.toml` format:
|
|
|
81
81
|
```toml
|
|
82
82
|
[[repos]]
|
|
83
83
|
repo = "https://github.com/jonathandung/check-empty"
|
|
84
|
-
rev = "v0.
|
|
84
|
+
rev = "v0.2.0"
|
|
85
85
|
hooks = [{
|
|
86
86
|
id = "check-empty",
|
|
87
87
|
args = [
|
|
@@ -97,7 +97,7 @@ As a GitHub action step:
|
|
|
97
97
|
|
|
98
98
|
```yaml
|
|
99
99
|
steps:
|
|
100
|
-
- uses: jonathandung/check-empty@v0.
|
|
100
|
+
- uses: jonathandung/check-empty@v0.2.0 # the latest version on the GitHub Actions
|
|
101
101
|
# marketplace; this step will fail and subsequent jobs will not run if any file is
|
|
102
102
|
# not empty
|
|
103
103
|
with:
|
|
@@ -30,7 +30,7 @@ As a pre-commit hook:
|
|
|
30
30
|
# .pre-commit-config.yaml
|
|
31
31
|
repos:
|
|
32
32
|
- repo: https://github.com/jonathandung/check-empty
|
|
33
|
-
rev: v0.
|
|
33
|
+
rev: v0.2.0 # repository version
|
|
34
34
|
hooks:
|
|
35
35
|
- id: check-empty # the hook
|
|
36
36
|
args: # example list of arguments
|
|
@@ -47,7 +47,7 @@ equivalent in `prek.toml` format:
|
|
|
47
47
|
```toml
|
|
48
48
|
[[repos]]
|
|
49
49
|
repo = "https://github.com/jonathandung/check-empty"
|
|
50
|
-
rev = "v0.
|
|
50
|
+
rev = "v0.2.0"
|
|
51
51
|
hooks = [{
|
|
52
52
|
id = "check-empty",
|
|
53
53
|
args = [
|
|
@@ -63,7 +63,7 @@ As a GitHub action step:
|
|
|
63
63
|
|
|
64
64
|
```yaml
|
|
65
65
|
steps:
|
|
66
|
-
- uses: jonathandung/check-empty@v0.
|
|
66
|
+
- uses: jonathandung/check-empty@v0.2.0 # the latest version on the GitHub Actions
|
|
67
67
|
# marketplace; this step will fail and subsequent jobs will not run if any file is
|
|
68
68
|
# not empty
|
|
69
69
|
with:
|
|
@@ -13,7 +13,7 @@ maintainers = [{name = "Jonathan Dung", email = "jonathandung@yahoo.com"}]
|
|
|
13
13
|
name = "check-empty"
|
|
14
14
|
readme = "README.md"
|
|
15
15
|
requires-python = ">=3.7"
|
|
16
|
-
version = "0.
|
|
16
|
+
version = "0.2.0"
|
|
17
17
|
|
|
18
18
|
[project.scripts]
|
|
19
19
|
check-empty = "check_empty.__main__:main"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|