Reorganize custom dictionaries, better spell checking infra
This should be merged after my fleet of typo fix PRs.
This PR splits our custom dictionaries by topic, making them easier to maintain and inspect. It could also allow for more granular options in the future, such as whether each one should provide suggestions, or whether they should be case-sensitive.
@OnkarRuikar @bsmth
Give me 2-3 days.
command [filePaths...]
You are using both ellipsis and plural from of the word.
How to denote at least one file is required? command <filePath> [filePath...]? I think command [filePath]... does that.
Huh, the GH actions shell does not automatically expand glob patterns. That's inconvenient.
You are using both ellipsis and plural from of the word.
How to denote at least one file is required?
command <filePath> [filePath...]? I thinkcommand [filePath]... does that.
This is the description format as used by commander.js
In writing docs we need to explain following points:
- when to use cSpell inline ignore comments in content
- the purpose of each dictionary
- nuances like cities are to be put in
cultural-wordsbut towns and places inproper-name. We don't want to suggest small towns and places but want countries and cities etc.
I am waiting on content fixes to merge to check regex and other codes.
Huh, the GH actions shell does not automatically expand glob patterns. That's inconvenient.
You can specify shell to a task:
jobs:
name-of-job:
runs-on: ubuntu-latest
steps:
- name: Hello world
shell: pwsh
run: |
write-output "Hello World"
steps:
- name: Display the path
run: |
import os
print(os.environ['PATH'])
shell: python
steps:
- name: Display the path
run: echo $PATH
shell: bash
This pull request has merge conflicts that must be resolved before it can be merged.
This pull request has merge conflicts that must be resolved before it can be merged.
This should be merged after my fleet of typo fix PRs.
Already looking promising, nice work 👍🏻
Preview URLs
/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Automated_testing/en-US/docs/MDN/Writing_guidelines/Writing_style_guide
External URLs (1)
URL: /en-US/docs/MDN/Writing_guidelines/Writing_style_guide
Title: Writing style guide
- https://cspell.org/ (1 time) (Note! This may be a new URL 👀)
(comment last updated: 2024-10-31 02:20:13)
In writing docs we need to explain following points:
Which docs are you referring to? The comments and descriptions in the cSpell config?
Will merge once @OnkarRuikar also gives a thumbsup
Great, let's go!
Well done 👏🏻