vim-eof-comment 0.1.11__tar.gz → 0.5.2__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.
Files changed (78) hide show
  1. vim_eof_comment-0.5.2/.flake8 +23 -0
  2. vim_eof_comment-0.5.2/.gitattributes +1 -0
  3. vim_eof_comment-0.5.2/.github/CODEOWNERS +1 -0
  4. vim_eof_comment-0.5.2/.github/FUNDING.yml +1 -0
  5. vim_eof_comment-0.5.2/.github/workflows/flake8-lint.yml +40 -0
  6. vim_eof_comment-0.5.2/.github/workflows/mypy-lint.yml +37 -0
  7. vim_eof_comment-0.5.2/.github/workflows/release.yml +103 -0
  8. vim_eof_comment-0.5.2/.github/workflows/vim-eof-comment.yml +37 -0
  9. vim_eof_comment-0.5.2/.pre-commit-config.yaml +36 -0
  10. vim_eof_comment-0.5.2/CHANGELOG.md +255 -0
  11. vim_eof_comment-0.5.2/Makefile +71 -0
  12. vim_eof_comment-0.5.2/PKG-INFO +91 -0
  13. vim_eof_comment-0.5.2/README.md +55 -0
  14. vim_eof_comment-0.5.2/docs/Makefile +22 -0
  15. vim_eof_comment-0.5.2/docs/make.bat +35 -0
  16. vim_eof_comment-0.5.2/docs/source/conf.py +56 -0
  17. vim_eof_comment-0.5.2/docs/source/functions.rst +2 -0
  18. vim_eof_comment-0.5.2/docs/source/index.rst +22 -0
  19. vim_eof_comment-0.5.2/docs/source/installation.rst +14 -0
  20. vim_eof_comment-0.5.2/pyproject.toml +130 -0
  21. vim_eof_comment-0.5.2/requirements.txt +4 -0
  22. vim_eof_comment-0.5.2/taplo.toml +16 -0
  23. vim_eof_comment-0.5.2/version.txt +1 -0
  24. vim_eof_comment-0.5.2/vim_eof_comment/__init__.py +25 -0
  25. vim_eof_comment-0.5.2/vim_eof_comment/__init__.pyi +16 -0
  26. vim_eof_comment-0.5.2/vim_eof_comment/__main__.py +16 -0
  27. vim_eof_comment-0.5.2/vim_eof_comment/args/__init__.py +12 -0
  28. vim_eof_comment-0.5.2/vim_eof_comment/args/__init__.pyi +6 -0
  29. vim_eof_comment-0.5.2/vim_eof_comment/args/completion.py +48 -0
  30. vim_eof_comment-0.5.2/vim_eof_comment/args/completion.pyi +34 -0
  31. vim_eof_comment-0.5.2/vim_eof_comment/args/parsing.py +227 -0
  32. vim_eof_comment-0.5.2/vim_eof_comment/args/parsing.pyi +68 -0
  33. {vim_eof_comment-0.1.11/vim_eof_comment → vim_eof_comment-0.5.2/vim_eof_comment/comments}/__init__.py +6 -2
  34. vim_eof_comment-0.5.2/vim_eof_comment/comments/__init__.pyi +5 -0
  35. vim_eof_comment-0.5.2/vim_eof_comment/comments/filetypes.json +1 -0
  36. vim_eof_comment-0.5.2/vim_eof_comment/comments/generator.py +288 -0
  37. vim_eof_comment-0.5.2/vim_eof_comment/comments/generator.pyi +140 -0
  38. vim_eof_comment-0.5.2/vim_eof_comment/eof.py +178 -0
  39. vim_eof_comment-0.5.2/vim_eof_comment/eof.pyi +60 -0
  40. vim_eof_comment-0.5.2/vim_eof_comment/file.py +222 -0
  41. vim_eof_comment-0.5.2/vim_eof_comment/file.pyi +86 -0
  42. vim_eof_comment-0.5.2/vim_eof_comment/regex.py +38 -0
  43. vim_eof_comment-0.5.2/vim_eof_comment/regex.pyi +18 -0
  44. vim_eof_comment-0.5.2/vim_eof_comment/types.py +365 -0
  45. vim_eof_comment-0.5.2/vim_eof_comment/types.pyi +298 -0
  46. vim_eof_comment-0.5.2/vim_eof_comment/util.py +168 -0
  47. vim_eof_comment-0.5.2/vim_eof_comment/util.pyi +100 -0
  48. vim_eof_comment-0.5.2/vim_eof_comment/version.py +107 -0
  49. vim_eof_comment-0.5.2/vim_eof_comment/version.pyi +24 -0
  50. vim_eof_comment-0.5.2/vim_eof_comment.egg-info/PKG-INFO +91 -0
  51. vim_eof_comment-0.5.2/vim_eof_comment.egg-info/SOURCES.txt +56 -0
  52. vim_eof_comment-0.5.2/vim_eof_comment.egg-info/requires.txt +3 -0
  53. {vim_eof_comment-0.1.11 → vim_eof_comment-0.5.2}/vim_eof_comment.egg-info/top_level.txt +2 -0
  54. vim_eof_comment-0.1.11/PKG-INFO +0 -68
  55. vim_eof_comment-0.1.11/README.md +0 -39
  56. vim_eof_comment-0.1.11/pyproject.toml +0 -43
  57. vim_eof_comment-0.1.11/vim_eof_comment/args/__init__.py +0 -7
  58. vim_eof_comment-0.1.11/vim_eof_comment/args/__init__.pyi +0 -0
  59. vim_eof_comment-0.1.11/vim_eof_comment/args/color.py +0 -103
  60. vim_eof_comment-0.1.11/vim_eof_comment/args/color.pyi +0 -9
  61. vim_eof_comment-0.1.11/vim_eof_comment/args/parsing.py +0 -62
  62. vim_eof_comment-0.1.11/vim_eof_comment/args/parsing.pyi +0 -7
  63. vim_eof_comment-0.1.11/vim_eof_comment/comments.py +0 -130
  64. vim_eof_comment-0.1.11/vim_eof_comment/comments.pyi +0 -14
  65. vim_eof_comment-0.1.11/vim_eof_comment/eof.py +0 -80
  66. vim_eof_comment-0.1.11/vim_eof_comment/eof.pyi +0 -14
  67. vim_eof_comment-0.1.11/vim_eof_comment/file.py +0 -58
  68. vim_eof_comment-0.1.11/vim_eof_comment/file.pyi +0 -9
  69. vim_eof_comment-0.1.11/vim_eof_comment/util.py +0 -70
  70. vim_eof_comment-0.1.11/vim_eof_comment/util.pyi +0 -4
  71. vim_eof_comment-0.1.11/vim_eof_comment.egg-info/PKG-INFO +0 -68
  72. vim_eof_comment-0.1.11/vim_eof_comment.egg-info/SOURCES.txt +0 -25
  73. vim_eof_comment-0.1.11/vim_eof_comment.egg-info/requires.txt +0 -5
  74. {vim_eof_comment-0.1.11 → vim_eof_comment-0.5.2}/LICENSE +0 -0
  75. {vim_eof_comment-0.1.11 → vim_eof_comment-0.5.2}/setup.cfg +0 -0
  76. /vim_eof_comment-0.1.11/vim_eof_comment/__init__.pyi → /vim_eof_comment-0.5.2/vim_eof_comment/py.typed +0 -0
  77. {vim_eof_comment-0.1.11 → vim_eof_comment-0.5.2}/vim_eof_comment.egg-info/dependency_links.txt +0 -0
  78. {vim_eof_comment-0.1.11 → vim_eof_comment-0.5.2}/vim_eof_comment.egg-info/entry_points.txt +0 -0
@@ -0,0 +1,23 @@
1
+ [flake8]
2
+ exclude =
3
+ *.pyc,
4
+ *.pyi,
5
+ *migrations*,
6
+ *staticfiles*,
7
+ .git,
8
+ .tox
9
+ .venv,
10
+ __pycache__,
11
+ build,
12
+ docs,
13
+ locale,
14
+ test_*.py
15
+ tools,
16
+ venv,
17
+ max-line-length = 100
18
+ show-source = True
19
+ statistics = True
20
+ count = True
21
+ import-order-style = pep8
22
+ per-file-ignores =
23
+ __init__.py: F401
@@ -0,0 +1 @@
1
+ .gitignore export-ignore
@@ -0,0 +1 @@
1
+ * @DrKJeff16
@@ -0,0 +1 @@
1
+ github: DrKJeff16
@@ -0,0 +1,40 @@
1
+ name: Lint with flake8
2
+ on:
3
+ push:
4
+ paths:
5
+ - .github/workflows/flake8-lint.yml
6
+ - vim_eof_comment/*.py
7
+ - vim_eof_comment/args/*.py
8
+ - vim_eof_comment/comments/*.py
9
+ - vim_eof_comment/types/*.py
10
+ branches:
11
+ - main
12
+ pull_request:
13
+ paths:
14
+ - .github/workflows/flake8-lint.yml
15
+ - vim_eof_comment/*.py
16
+ - vim_eof_comment/args/*.py
17
+ - vim_eof_comment/comments/*.py
18
+ - vim_eof_comment/types/*.py
19
+ branches:
20
+ - main
21
+ jobs:
22
+ flake8-lint:
23
+ runs-on: ubuntu-latest
24
+ name: Lint with flake8
25
+ steps:
26
+ - name: Checkout
27
+ uses: actions/checkout@v6
28
+ - name: Set up Python environment
29
+ uses: actions/setup-python@v6.1.0
30
+ with:
31
+ python-version: "3.10"
32
+ architecture: x64
33
+ - name: flake8 Lint
34
+ uses: py-actions/flake8@v2.3.0
35
+ with:
36
+ ignore: "D401"
37
+ max-line-length: "100"
38
+ path: "vim_eof_comment"
39
+ plugins: "flake8-pyi"
40
+ exclude: ".tox,.git,*staticfiles*,build,locale,docs,tools,venv,.venv,*migrations*,*.pyc,*.pyi,__pycache__,test_*.py"
@@ -0,0 +1,37 @@
1
+ name: Lint with mypy
2
+ on:
3
+ push:
4
+ paths:
5
+ - "*.py"
6
+ - "*.pyi"
7
+ - .github/workflows/mypy-lint.yml
8
+ branches:
9
+ - main
10
+ pull_request:
11
+ paths:
12
+ - "*.py"
13
+ - "*.pyi"
14
+ - .github/workflows/mypy-lint.yml
15
+ branches:
16
+ - main
17
+ jobs:
18
+ mypy-lint:
19
+ runs-on: ubuntu-latest
20
+ name: Lint with mypy
21
+ steps:
22
+ - name: Checkout
23
+ uses: actions/checkout@v6
24
+ - name: Set up Python environment
25
+ uses: actions/setup-python@v6.1.0
26
+ with:
27
+ python-version: "3.10"
28
+ architecture: x64
29
+ - name: Install mypy
30
+ run: |
31
+ pip install -U mypy mypy-extensions typing typing-extensions
32
+ - name: Run mypy
33
+ uses: sasanquaneuf/mypy-github-action@main
34
+ with:
35
+ checkName: mypy-lint # NOTE: this needs to be the same as the job name
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,103 @@
1
+ name: Action Release
2
+ on:
3
+ push:
4
+ tags:
5
+ - "*.*.*"
6
+ merge_group:
7
+ branches:
8
+ - main
9
+ release:
10
+ types:
11
+ - created
12
+ jobs:
13
+ release:
14
+ permissions:
15
+ contents: write
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v6
20
+ - name: Build Project Assets
21
+ run: |
22
+ mkdir -pv vim-eof-comment
23
+ cp -rv vim_eof_comment README.md LICENSE Makefile vim-eof-comment
24
+ zip -r -9 vim-eof-comment.zip vim-eof-comment
25
+ tar cvJf vim-eof-comment.tar.xz vim-eof-comment
26
+ tar cvzf vim-eof-comment.tar.gz vim-eof-comment
27
+ sha512sum vim-eof-comment.zip vim-eof-comment.tar.gz vim-eof-comment.tar.xz >| sha512sums.txt
28
+ md5sum vim-eof-comment.zip vim-eof-comment.tar.gz vim-eof-comment.tar.xz >| md5sums.txt
29
+ rm -rfv vim-eof-comment
30
+ - name: Get Release
31
+ uses: joutvhu/get-release@v1.0.3
32
+ with:
33
+ latest: true
34
+ prerelease: true
35
+ pattern: '^.*'
36
+ debug: true
37
+ throwing: true
38
+ env:
39
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
+ - name: Build Release File
41
+ run: |
42
+ echo ${{ github.sha }} | tee Release.txt
43
+ - name: Release
44
+ uses: softprops/action-gh-release@v2.5.0
45
+ with:
46
+ files: |
47
+ Release.txt
48
+ vim-eof-comment.tar.xz
49
+ vim-eof-comment.tar.gz
50
+ vim-eof-comment.zip
51
+ md5sums.txt
52
+ sha512sums.txt
53
+ token: ${{ secrets.GITHUB_TOKEN }}
54
+ release-build:
55
+ permissions:
56
+ contents: read
57
+ needs:
58
+ - release
59
+ runs-on: ubuntu-latest
60
+ steps:
61
+ - name: Checkout
62
+ uses: actions/checkout@v6
63
+ - name: Setup Python
64
+ uses: actions/setup-python@v5
65
+ with:
66
+ python-version: "3.10"
67
+ - name: Build Release Distributions
68
+ run: |
69
+ # NOTE: put your own distribution build steps here.
70
+ python -m pip install -U setuptools argparse typing typing-extensions build
71
+ python -m build
72
+ - name: Upload Distributions
73
+ uses: actions/upload-artifact@v6
74
+ with:
75
+ name: release-dists
76
+ path: dist/
77
+ pypi-publish:
78
+ runs-on: ubuntu-latest
79
+ needs:
80
+ - release-build
81
+ permissions:
82
+ # IMPORTANT: this permission is mandatory for trusted publishing
83
+ id-token: write
84
+ # Dedicated environments with protections for publishing are strongly recommended.
85
+ # For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
86
+ environment:
87
+ name: pypi
88
+ # OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
89
+ # url: https://pypi.org/p/vim-eof-comment
90
+ #
91
+ # ALTERNATIVE: if your GitHub Release name is the PyPI project version string
92
+ # ALTERNATIVE: exactly, uncomment the following line instead:
93
+ url: https://pypi.org/p/vim-eof-comment/${{ github.event.release.name }}
94
+ steps:
95
+ - name: Retrieve Release Distributions
96
+ uses: actions/download-artifact@v7
97
+ with:
98
+ name: release-dists
99
+ path: dist/
100
+ - name: Publish release distributions to PyPI
101
+ uses: pypa/gh-action-pypi-publish@v1.13.0
102
+ with:
103
+ packages-dir: dist/
@@ -0,0 +1,37 @@
1
+ # GitHub Actions example
2
+ name: Run vim-eof-comment
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ types:
9
+ - opened
10
+ branches:
11
+ - main
12
+ jobs:
13
+ vim_eof_comment:
14
+ name: vim-eof-comment
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: write
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v6
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v6.1.0
23
+ with:
24
+ python-version: '3.14'
25
+ - name: Install vim-eof-comment
26
+ run: |
27
+ python -m pip install -U pip
28
+ pip install -U vim-eof-comment
29
+ - name: Run vim-eof-comment
30
+ run: |
31
+ vim-eof-comment -e py,pyi,md,Makefile,yaml,toml -i py:4:Y,pyi:4:Y,md:2:Y -nv .
32
+ - name: Auto Commit Changes
33
+ uses: stefanzweifel/git-auto-commit-action@v7.1.0
34
+ with:
35
+ commit_message: "chore: format files with `vim-eof-comment`"
36
+ commit_options: "--signoff"
37
+ branch: ${{ github.head_ref }}
@@ -0,0 +1,36 @@
1
+ repos:
2
+ - repo: https://github.com/pycqa/isort
3
+ rev: 7.0.0
4
+ hooks:
5
+ - id: isort
6
+ verbose: true
7
+ - repo: https://github.com/pre-commit/pre-commit-hooks
8
+ rev: v6.0.0
9
+ hooks:
10
+ - id: end-of-file-fixer
11
+ verbose: true
12
+ - repo: https://github.com/Lucas-C/pre-commit-hooks
13
+ rev: v1.5.5
14
+ hooks:
15
+ - id: remove-crlf
16
+ verbose: true
17
+ - id: forbid-crlf # Forbid files containing CRLF end-lines to be committed
18
+ verbose: true
19
+ - repo: local
20
+ hooks:
21
+ - id: lint
22
+ name: Lint Script
23
+ language: system
24
+ types: [python]
25
+ files: ^(vim_eof_comment/.*\.pyi?|Makefile)$
26
+ entry: make lint
27
+ verbose: true
28
+ - id: run_script
29
+ name: Install and Run Script Locally
30
+ language: system
31
+ types: [python]
32
+ files: ^(vim_eof_comment/.*\.py|Makefile)$
33
+ entry: make run-script
34
+ verbose: true
35
+
36
+ # vim: set ts=2 sts=2 sw=2 et ai si sta:
@@ -0,0 +1,255 @@
1
+ # Changelog
2
+
3
+ ## [0.4.0](https://github.com/DrKJeff16/vim-eof-comment/tree/0.4.0) (2026-01-04)
4
+
5
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.21...0.4.0)
6
+
7
+ ## [0.3.21](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.21) (2026-01-03)
8
+
9
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.20...0.3.21)
10
+
11
+ ## [0.3.20](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.20) (2026-01-03)
12
+
13
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.19...0.3.20)
14
+
15
+ ## [0.3.19](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.19) (2026-01-03)
16
+
17
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.18...0.3.19)
18
+
19
+ ## [0.3.18](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.18) (2025-12-31)
20
+
21
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.17...0.3.18)
22
+
23
+ ## [0.3.17](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.17) (2025-12-31)
24
+
25
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.16...0.3.17)
26
+
27
+ ## [0.3.16](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.16) (2025-12-31)
28
+
29
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.15...0.3.16)
30
+
31
+ ## [0.3.15](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.15) (2025-12-31)
32
+
33
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.14...0.3.15)
34
+
35
+ ## [0.3.14](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.14) (2025-12-30)
36
+
37
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.13...0.3.14)
38
+
39
+ ## [0.3.13](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.13) (2025-12-29)
40
+
41
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.12...0.3.13)
42
+
43
+ ## [0.3.12](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.12) (2025-12-29)
44
+
45
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.11...0.3.12)
46
+
47
+ ## [0.3.11](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.11) (2025-12-28)
48
+
49
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.10...0.3.11)
50
+
51
+ ## [0.3.10](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.10) (2025-12-25)
52
+
53
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.9...0.3.10)
54
+
55
+ ## [0.3.9](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.9) (2025-12-25)
56
+
57
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.8...0.3.9)
58
+
59
+ ## [0.3.8](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.8) (2025-12-24)
60
+
61
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.7...0.3.8)
62
+
63
+ ## [0.3.7](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.7) (2025-12-24)
64
+
65
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.6...0.3.7)
66
+
67
+ ## [0.3.6](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.6) (2025-12-23)
68
+
69
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.5...0.3.6)
70
+
71
+ ## [0.3.5](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.5) (2025-12-22)
72
+
73
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.4...0.3.5)
74
+
75
+ ## [0.3.4](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.4) (2025-12-22)
76
+
77
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.3...0.3.4)
78
+
79
+ ## [0.3.3](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.3) (2025-12-22)
80
+
81
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.2...0.3.3)
82
+
83
+ ## [0.3.2](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.2) (2025-12-20)
84
+
85
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.1...0.3.2)
86
+
87
+ ## [0.3.1](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.1) (2025-12-20)
88
+
89
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.3.0...0.3.1)
90
+
91
+ ## [0.3.0](https://github.com/DrKJeff16/vim-eof-comment/tree/0.3.0) (2025-12-19)
92
+
93
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.2.3...0.3.0)
94
+
95
+ ## [0.2.3](https://github.com/DrKJeff16/vim-eof-comment/tree/0.2.3) (2025-12-19)
96
+
97
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.2.2...0.2.3)
98
+
99
+ ## [0.2.2](https://github.com/DrKJeff16/vim-eof-comment/tree/0.2.2) (2025-12-18)
100
+
101
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.2.1...0.2.2)
102
+
103
+ ## [0.2.1](https://github.com/DrKJeff16/vim-eof-comment/tree/0.2.1) (2025-12-18)
104
+
105
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.2.0...0.2.1)
106
+
107
+ ## [0.2.0](https://github.com/DrKJeff16/vim-eof-comment/tree/0.2.0) (2025-12-18)
108
+
109
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.38...0.2.0)
110
+
111
+ ## [0.1.38](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.38) (2025-12-17)
112
+
113
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.37...0.1.38)
114
+
115
+ ## [0.1.37](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.37) (2025-12-16)
116
+
117
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.36...0.1.37)
118
+
119
+ ## [0.1.36](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.36) (2025-12-16)
120
+
121
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.35...0.1.36)
122
+
123
+ ## [0.1.35](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.35) (2025-12-16)
124
+
125
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.34...0.1.35)
126
+
127
+ ## [0.1.34](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.34) (2025-12-16)
128
+
129
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.33...0.1.34)
130
+
131
+ ## [0.1.33](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.33) (2025-12-15)
132
+
133
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.32...0.1.33)
134
+
135
+ ## [0.1.32](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.32) (2025-12-15)
136
+
137
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.31...0.1.32)
138
+
139
+ ## [0.1.31](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.31) (2025-12-15)
140
+
141
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.30...0.1.31)
142
+
143
+ ## [0.1.30](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.30) (2025-12-15)
144
+
145
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.29...0.1.30)
146
+
147
+ ## [0.1.29](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.29) (2025-12-15)
148
+
149
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.28...0.1.29)
150
+
151
+ ## [0.1.28](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.28) (2025-12-15)
152
+
153
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.27...0.1.28)
154
+
155
+ ## [0.1.27](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.27) (2025-12-15)
156
+
157
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.26...0.1.27)
158
+
159
+ ## [0.1.26](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.26) (2025-12-15)
160
+
161
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.25...0.1.26)
162
+
163
+ ## [0.1.25](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.25) (2025-12-14)
164
+
165
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.24...0.1.25)
166
+
167
+ ## [0.1.24](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.24) (2025-12-14)
168
+
169
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.23...0.1.24)
170
+
171
+ ## [0.1.23](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.23) (2025-12-14)
172
+
173
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.22...0.1.23)
174
+
175
+ ## [0.1.22](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.22) (2025-12-14)
176
+
177
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.21...0.1.22)
178
+
179
+ ## [0.1.21](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.21) (2025-12-14)
180
+
181
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.20...0.1.21)
182
+
183
+ ## [0.1.20](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.20) (2025-12-13)
184
+
185
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.19...0.1.20)
186
+
187
+ ## [0.1.19](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.19) (2025-12-13)
188
+
189
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.18...0.1.19)
190
+
191
+ ## [0.1.18](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.18) (2025-12-13)
192
+
193
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.17...0.1.18)
194
+
195
+ ## [0.1.17](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.17) (2025-12-13)
196
+
197
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.16...0.1.17)
198
+
199
+ ## [0.1.16](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.16) (2025-12-13)
200
+
201
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.15...0.1.16)
202
+
203
+ ## [0.1.15](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.15) (2025-12-13)
204
+
205
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.14...0.1.15)
206
+
207
+ ## [0.1.14](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.14) (2025-12-13)
208
+
209
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.13...0.1.14)
210
+
211
+ ## [0.1.13](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.13) (2025-12-13)
212
+
213
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.12...0.1.13)
214
+
215
+ ## [0.1.12](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.12) (2025-12-12)
216
+
217
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.11...0.1.12)
218
+
219
+ ## [0.1.11](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.11) (2025-12-12)
220
+
221
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.10...0.1.11)
222
+
223
+ ## [0.1.10](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.10) (2025-12-12)
224
+
225
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.9...0.1.10)
226
+
227
+ ## [0.1.9](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.9) (2025-12-12)
228
+
229
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.8...0.1.9)
230
+
231
+ ## [0.1.8](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.8) (2025-12-12)
232
+
233
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.5...0.1.8)
234
+
235
+ ## [0.1.5](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.5) (2025-12-12)
236
+
237
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.4...0.1.5)
238
+
239
+ ## [0.1.4](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.4) (2025-12-12)
240
+
241
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.3...0.1.4)
242
+
243
+ ## [0.1.3](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.3) (2025-12-12)
244
+
245
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0.1.1...0.1.3)
246
+
247
+ ## [0.1.1](https://github.com/DrKJeff16/vim-eof-comment/tree/0.1.1) (2025-12-12)
248
+
249
+ [Full Changelog](https://github.com/DrKJeff16/vim-eof-comment/compare/0596121d44549903664b1df2f0fa78e9a944e687...0.1.1)
250
+
251
+
252
+
253
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
254
+
255
+ <!-- vim: set ts=2 sts=2 sw=2 et ai si sta: -->
@@ -0,0 +1,71 @@
1
+ .PHONY: all help lint build local-install clean run-script docs
2
+
3
+ all: clean
4
+ @$(MAKE) local-install
5
+ @$(MAKE) run-script
6
+
7
+ clean:
8
+ @echo "Cleaning..."
9
+ @rm -rf build dist *.egg-info
10
+ @echo -e "Done!"
11
+
12
+ distclean: clean
13
+ @echo "Cleaning Everything..."
14
+ @rm -rf .mypy_cache .ropeproject .pytest_cache
15
+ @echo -e "Done!"
16
+
17
+ docs:
18
+ @echo -e "Generating docs..."
19
+ @$(MAKE) -C docs html
20
+ @echo -e "Done!"
21
+
22
+ help:
23
+ @echo -e "Available targets:\n"
24
+ @echo " build"
25
+ @echo " clean"
26
+ @echo " distclean"
27
+ @echo " docs"
28
+ @echo " help"
29
+ @echo " lint"
30
+ @echo " local-install"
31
+ @echo " run-script"
32
+ @echo " stubs"
33
+ @echo
34
+
35
+ lint:
36
+ @echo "Linting..."
37
+ @flake8 --statistics --show-source --color=always --max-line-length=100 --ignore=D401 \
38
+ --per-file-ignores=__init__.py:F401 \
39
+ --exclude .tox,.git,*staticfiles*,build,locale,docs,tools,venv,.venv,*migrations*,*.pyc,*.pyi,__pycache__,test_*.py \
40
+ vim_eof_comment
41
+ @pydocstyle --convention=numpy --match='.*\.py' vim_eof_comment
42
+ @autopep8 --aggressive --aggressive --aggressive --in-place --recursive vim_eof_comment
43
+ $(eval files := $(shell fd --full-path vim_eof_comment -e py))
44
+ @numpydoc lint $(files)
45
+ @echo "Done!"
46
+
47
+ stubs: lint
48
+ @echo "Generating stubs..."
49
+ @stubgen --include-docstrings --include-private -v -p vim_eof_comment -o .
50
+ @echo -e "Done!\nRunning isort..."
51
+ @isort vim_eof_comment
52
+ @echo -e "Done!\nLinting with mypy..."
53
+ @mypy vim_eof_comment
54
+ @echo -e "Done!"
55
+
56
+ build: stubs
57
+ @echo -e "Building..."
58
+ @python3 -m build
59
+ @echo -e "Done!"
60
+
61
+ local-install: build
62
+ @echo -e "Installing locally..."
63
+ @python3 -m pip install .
64
+ @echo -e "Done!"
65
+
66
+ run-script:
67
+ @echo -e "Running vim-eof-comment..."
68
+ @vim-eof-comment -e py,pyi,Makefile,md -nv .
69
+ @echo -e "Done!"
70
+
71
+ # vim: set ts=4 sts=4 sw=0 noet ai si sta: