check code for common misspellings. Contribute to codespell-project/codespell development by creating an account on GitHub.
When used, codespell scans the source code files and checks for words that may be misspelled or not conforming to coding conventions. It examines identifiers, function names, comments, and other textual elements in the codebase. The tool then compares the identified words against a dictionary and...
codespell 是用Python写的工具,因此直接使用pip安装即可: 代码语言:javascript 代码运行次数:0 运行 AI代码解释 pip install codespell 输出应该类似如下: 代码语言:javascript 代码 运行 AI代码解释 Collecting codespell Downloading codespell-2.2.1-py3-none-any.whl(202kB)━━━202.1/202.1kB165.1kB/s eta0:0...
Here are 76 public repositories matching this topic... Language:All Sort:Most stars A Spell Checker for Code! spellspell-checker UpdatedMar 29, 2025 TypeScript wooorm/dictionaries Sponsor Star1.3k Hunspell dictionaries in UTF-8 spellcheckdictionariesgrammarcheckspell-checkspellhunspellspellcheckermyspell...
Code Spell Checker插件具有以下几个突出特点:1.实时检查与提示: 插件会在您输入代码的同时,实时地检查可能的拼写错误,并在错误出现时给予提示。这有助于避免拼写错误在代码中蔓延。2.自定义词典: 每个项目都有其特定的领域术语和缩写。插件允许您创建自定义词典,将项目特定的词汇添加到拼写检查中,避免出现误报...
Code Spell Checker插件是一款专门为程序员设计的拼写检查工具。在日常的编码过程中,拼写错误是难以避免的,但这些错误可能会影响代码的可读性和维护性。这正是Code Spell Checker插件的用武之地。该插件能够扫描您的代码并标识出潜在的拼写错误,帮助您在早期发现并修复这些问题,从而提高代码的质量。
Most implementedSocialLatestNo code FASPell: A Fast, Adaptable, Simple, Powerful Chinese Spell Checker Based On DAE-Decoder Paradigm iqiyi/FASPell• •WS 2019 We propose a Chinese spell checker {--} FASPell based on a new paradigm which consists of a denoising autoencoder (DAE) and a decod...
Codespell 作者:Kelly McCullough 出版年:2008-6 页数:274 定价:$ 7.90 ISBN:9780441016037 豆瓣评分 目前无人评价 评价: 写笔记 写书评 加入购书单 分享到
Code Spell Checker插件是一款专门为程序员设计的拼写检查工具。在日常的编码过程中,拼写错误是难以避免的,但这些错误可能会影响代码的可读性和维护性。这正是Code Spell Checker插件的用武之地。该插件能够扫描您的代码并标识出潜在的拼写错误,帮助您在早期发现并修复这些问题,从而提高代码的质量。
1. Install codespell pip install codespell 2. Download dictionary to a folder, e.g. ~/dictionary.txt 3. Git clone gitclonexxx.git 3. Check docs files spell errors with codespell $cdxxx$find . -name"*.md"|xargs codespell -D ~/dictionary.txt...