Basic configuration for spellcheck action#112
Conversation
…not covered by the dictionary
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request integrates a basic spell-checking mechanism into the repository, focusing on improving the quality and consistency of documentation written in Markdown. By introducing a dedicated configuration and a custom wordlist, it establishes a foundation for automated linguistic checks, aiming to reduce typos and grammatical errors in user-facing content without interfering with code segments. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request adds a basic configuration for a spellcheck GitHub Action, including a configuration file and an empty wordlist. The implementation is straightforward and correct. I have one suggestion to improve the clarity of the configuration file.
| - .wordlist.txt | ||
| encoding: utf-8 | ||
| pipeline: | ||
| - pyspelling.filters.markdown: |
There was a problem hiding this comment.
Basic configuration for checking spelling in Markdown and in English including an empty custom dictionary for words not covered by the dictionary
I have added a configuration file for the action to check the spelling the default is in the root of the repository, this can be moved, either request this or have a look at the documentation.
In addition an empty file:
.wordlist.txtthis file should be populated with all the words that are not covered by a the normal dictionary, like names and special technical terms etc.Let me know if there are any questions or problems and I will see what I can do to accomodate.
How Has This Been Tested?
I have tested the configuration locally on my fork of the repository.
Checklist
Additional notes
This aims to address the issue raised in the repository: rojopolis/spellcheck-github-actions