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 778b8fe commit 997cdc0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 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": "^2.0.1",
"@cspell/dict-css": "^2.0.0",
Expand Down
14 changes: 7 additions & 7 deletions packages/cspell-lib/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-lib/package.json
Expand Up @@ -72,7 +72,7 @@
"node": ">=12.13.0"
},
"devDependencies": {
"@cspell/dict-cpp": "^1.1.40",
"@cspell/dict-cpp": "^3.0.1",
"@cspell/dict-csharp": "^1.0.11",
"@cspell/dict-css": "^1.0.13",
"@cspell/dict-fa-ir": "^2.0.0",
Expand Down

0 comments on commit 997cdc0

Please sign in to comment.