Misc updates#9
Conversation
Summary of ChangesHello @jen-reeve, 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 introduces a series of updates across various dictionary files, primarily focusing on expanding vocabulary, adding new acronyms, commands, and software names, and enhancing existing entries with linguistic attributes like possessive forms. The changes aim to enrich the available terminology within the system, improving its comprehensiveness and accuracy across different domains. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. 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
|
JSON and YAML Validation ResultsYAML Validation Results
Violations: [
{
"file": "dic/software_names.yaml",
"errors": [
{
"path": null,
"message": "Invalid YAML",
"error": "YAMLParseError Map keys must be unique at line 16, column 6"
}
]
}
] |
There was a problem hiding this comment.
Code Review
This pull request adds various terms to the dictionary files. The changes are mostly good, but there are a few issues to address. I've found a critical schema violation in dic/software_names.yaml that needs to be fixed. I've also left comments regarding typos, inconsistencies in formatting (like trailing spaces and boolean capitalization), and missing newlines at the end of files. Additionally, one of the software names seems to have incorrect capitalization, and one of the miscellaneous dictionary files could benefit from being sorted alphabetically for better maintainability.
| crontab: | ||
| Illumina: | ||
| ImagMagick: | ||
| IOBUF: |
There was a problem hiding this comment.
The entry Julia+Pluto.ji has a couple of issues:
- It violates the project's schema for dictionary keys (
/^[^\w\-]+$/), as+is not an allowed character. This is a critical issue that will likely break the build. - The
.jiextension appears to be a typo for.jl, the correct extension for Julia files and Pluto notebooks.
There is also a separate Pluto.ji entry on line 47 which seems redundant and also has the .jl typo.
Consider replacing these with valid and correct entries, for example, separate entries for Julia and Pluto.jl.
| srun: No newline at end of file | ||
| srun: | ||
| sbatch: | ||
| env: No newline at end of file |
| rollout: | ||
| Ancil: Short for Ancilliary | ||
| md: | ||
| venv: Virtual environment |
| FreeIPA: | ||
| GeneMark: | ||
| GridRunner: | ||
| GTK: open-source toolkit for creating graphical user interfaces |
| Keras: | ||
| Keycloak: | ||
| Kibana: Kibana is a source-available data visualization dashboard software for Elasticsearch. | ||
| Kraken: |
| ora: | ||
| Manaaki: | ||
| Whenua: | ||
| Ōtautahi: |
| Manaaki: | ||
| Whenua: | ||
| Ōtautahi: | ||
| possessive: True |
There was a problem hiding this comment.
JSON and YAML Validation ResultsYAML Validation Results
Violations: [
{
"file": "dic/software_names.yaml",
"errors": [
{
"path": null,
"message": "Invalid YAML",
"error": "YAMLParseError Map keys must be unique at line 16, column 6"
}
]
}
] |
No description provided.