Skip to content

Commit

Permalink
feat: Upgrade cpp dictionary
Browse files Browse the repository at this point in the history
**Semi-Breaking change**

`allowCompoundWords` is no-longer `true` by default.

If you want the old behavior, add the following to your `cspell.json` file:

**`cspell.json`**
```json
{
    "languageSettings": [
        {
            "languageId": "c,cpp",
            "allowCompoundWords": true
        }
    ]
}
```
  • Loading branch information
Jason3S committed May 4, 2022
1 parent 64c11da commit 945dedf
Show file tree
Hide file tree
Showing 5 changed files with 63,833 additions and 3,563 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/integration-test.yml
Expand Up @@ -33,6 +33,8 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
# the integration tests are independent, so we want to run them all.
fail-fast: false
matrix:
node-version:
- 16.x
Expand Down
14 changes: 7 additions & 7 deletions packages/cspell-bundled-dicts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cspell-bundled-dicts/package.json
Expand Up @@ -47,7 +47,7 @@
"@cspell/dict-aws": "^2.0.0",
"@cspell/dict-bash": "^2.0.2",
"@cspell/dict-companies": "^2.0.4",
"@cspell/dict-cpp": "^2.0.3",
"@cspell/dict-cpp": "^3.0.1",
"@cspell/dict-cryptocurrencies": "^2.0.0",
"@cspell/dict-csharp": "^3.0.1",
"@cspell/dict-css": "^2.0.0",
Expand Down

0 comments on commit 945dedf

Please sign in to comment.