Skip to content

Commit 14650cf

Browse files
committed
Refactor with a pure Python spell checker
This is a major re-write of the code. It now uses pyspellchecker, a pure Python package, replacing pyenchant, which required the C enchant library underneath. Also code has been re-organized to make seperate functions into smaller, more manageable parts and to adhere to Pylint's coding standards.
1 parent dab4e11 commit 14650cf

File tree

10 files changed

+410
-174
lines changed

10 files changed

+410
-174
lines changed

comment_spell_check/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
""" comment_spell_check """
2+
3+
from comment_spell_check import comment_spell_check
4+
5+
6+
def main():
7+
"""Entry point for the application script"""
8+
comment_spell_check.main()

0 commit comments

Comments
 (0)