Skip to content

Commit

Permalink
fix: check all files by default (#1314)
Browse files Browse the repository at this point in the history
Related to #1283 and #1308
  • Loading branch information
Jason3S authored Sep 17, 2021
1 parent ea48f39 commit 30853a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/_includes/generated-docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ This same effect can be achieved using the `files` setting.
```

Default
: _`true`_
: _`false`_

---

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2303,7 +2303,7 @@
"type": "array"
},
"cSpell.spellCheckOnlyWorkspaceFiles": {
"default": true,
"default": false,
"markdownDescription": "Only spell check files that are in the currently open workspace.\nThis same effect can be achieved using the `files` setting.\n\n```\n\"cSpell.files\": [\"**\", \"**​/.*\", \"**​/.*​/**\"]\n```",
"scope": "window",
"title": "Spell Check Only Workspace Files",
Expand Down
2 changes: 1 addition & 1 deletion packages/_server/spell-checker-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@
"type": "number"
},
"spellCheckOnlyWorkspaceFiles": {
"default": true,
"default": false,
"markdownDescription": "Only spell check files that are in the currently open workspace.\nThis same effect can be achieved using the `files` setting.\n\n```\n\"cSpell.files\": [\"**\", \"**​/.*\", \"**​/.*​/**\"]\n```",
"scope": "window",
"title": "Spell Check Only Workspace Files",
Expand Down
2 changes: 1 addition & 1 deletion packages/_server/src/config/cspellConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export interface SpellCheckerSettings extends SpellCheckerShouldCheckDocSettings
* ```
* "cSpell.files": ["**", "**​/.*", "**​/.*​/**"]
* ```
* @default true
* @default false
*/
spellCheckOnlyWorkspaceFiles?: boolean;

Expand Down

0 comments on commit 30853a6

Please sign in to comment.